Skip to content

Latest commit

 

History

History
41 lines (24 loc) · 790 Bytes

Excel.Application.Path.md

File metadata and controls

41 lines (24 loc) · 790 Bytes
title keywords f1_keywords api_name ms.assetid ms.date ms.localizationpriority
Application.Path property (Excel)
vbaxl10.chm133189
vbaxl10.chm133189
Excel.Application.Path
0ef5d0fc-f46a-c133-232a-8a20cf2d4034
04/05/2019
medium

Application.Path property (Excel)

Returns a String value that represents the complete path to the application, excluding the final separator and name of the application.

Syntax

expression.Path

expression A variable that represents an Application object.

Example

This example displays the complete path to Microsoft Excel.

Sub TotalPath() 
 
 MsgBox "The path is " & Application.Path 
 
End Sub

[!includeSupport and feedback]