Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 818 Bytes

Excel.Application.LibraryPath.md

File metadata and controls

39 lines (24 loc) · 818 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.LibraryPath property (Excel)
vbaxl10.chm133155
vbaxl10.chm133155
Excel.Application.LibraryPath
783efa4a-640b-ab78-2831-da2ecd05558a
04/05/2019
medium

Application.LibraryPath property (Excel)

Returns the path to the Library folder, but without the final separator. Read-only String.

Syntax

expression.LibraryPath

expression A variable that represents an Application object.

Example

This example opens the file Oscar.xla in the Library folder.

pathSep = Application.PathSeparator 
f = Application.LibraryPath & pathSep & "Oscar.xla" 
Workbooks.Open filename:=f

[!includeSupport and feedback]