How to Show Full File Path in Title Bar in Excel

,

This post will guide you how to show full file path in title bar in Excel. Is there a setting in Microsoft Excel that allows the display of the full path to the opened file in the window title bar? Or How to display an workbook’s full location in the Quick Access Toolbar in Excel 2013/2016.

Assuming that you have opened one workbook file, and the title bar only shows the file name of the current workbook in Excel. If you want to see where your workbook file is located on your local disk, you can display the full path of workbook file in the Title bar or Toolbar in the current workbook. Then you can easily copy to get it. This post will show you how to display the filename and full path in the title bar or Quick Access Toolbar.

Show Full File Path in Title Bar


If you want to show full path and file name of your current workbook in the Title Bar, you have to use an simple VBA Macro (just only three-line macro) to achieve the result. Just do the following steps:

Step1: open your excel workbook and then click on “Visual Basic” command under DEVELOPER Tab, or just press “ALT+F11” shortcut.

Get the position of the nth using excel vba1
Step2: then the “Visual Basic Editor” window will appear.

Step3: click “Insert” ->”Module” to create a new module.

export each sheet to csv2

Step4: paste the below VBA code  into the code window. Then clicking “Save” button.

show full path in titlebar9

Sub ShowFullPath()
ActiveWindow.Caption = ActiveWorkbook.FullName

End Sub

Step5: back to the current worksheet, then run the above excel macro. Click Run button.

show full path in titlebar10

Step6: Let’s see the result:

show full path in titlebar8   show full path in titlebar11

Show Full File Path in Quick Access Toolbar


You can also display the current workbook’s location in the Quick Access Toolbar. Do the following steps:

Step1: click the Quick Access Toolbar’s dropdown list, and select More commands. Or you can also right click on the Quick Access Toolbar, and choose Customize Quick Access Toolbar or go to the File tab, choose Options and then select Quick Access toolbar in the left Pane of Excel Options dialog box. And the Excel Options dialog will open.

show full path in titlebar1

show full path in titlebar2

show full path in titlebar3

Step2: choose Commands Not in The Ribbon option from the Choose commands from drop down list in the Excel options.

show full path in titlebar4

Step3: select Document Location option(You can click inside the resulting list, then press D key on your keyboard, it will quickly jump to the first option that begins with the letter D )

show full path in titlebar5

Step4: click Add>> button to add this option to the Customize Quick Access Toolbar list box. If you only want to limit the Document Locator to the current document, just change the option in the Customize Quick Access Toolbar.

show full path in titlebar6

Step5: Click Ok button to return to the workbook, and you would see that the file’s full path location is displayed on the Quick Access Toolbar.

show full path in titlebar7

 

 

Leave a Reply