Library.Path

This property returns the path of the application.

This property is read only.

Syntax Parameters Return Value
- - String

SVB Example

Running a query:

Option Base 1
Option Explicit
Sub Main
     Dim ss As Spreadsheet
     Set ss = Application.Query("SELECT * FROM CHARACTERISTICS", Application.Path & "\examples\datasets\")
     ss.Visible = True
End Sub