Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Finding the Directory Name.

Finding the Directory Name

Written by Allen Wyatt (last updated August 23, 2025)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365


6

If you have a need to return, in a cell, the directory in which your workbook is saved, you may be tempted to use a macro to figure out the answer. While this is a valid approach (and relatively easy), some people are intimidated by macros or don't want to use them within the workbooks. The following worksheet formula will return the directory in which the workbook is stored:

=LEFT(CELL("Filename",$A$1),FIND("[",CELL("Filename",$A$1))-1)

If you use this formula in a workbook that is brand new—one that has yet to be saved—then it will return a #VALUE! error. This happens because the filename has not yet been set, and the LEFT function cannot return a portion of something that is not there. To avoid the error, simply encase the formula in the IFERROR function, as follows:

=IFERROR(LEFT(CELL("Filename",$A$1),FIND("[",CELL("Filename",$A$1))-1),"")

In this variation the CELL function is used to extract and return the directory name, but only if it has been set. If it has not been set, then an error occurs and IFERROR returns an empty string.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9455) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, 2021, 2024, and Excel in Microsoft 365. You can find a version of this tip for the older menu interface of Excel here: Finding the Directory Name.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Displaying the AutoShapes Menu

AutoShapes are very useful for adding common drawing shapes to your document. You can make the AutoShapes easier to ...

Discover More

Protecting Styles

If you spend a lot of time getting your document styles set "just right," you don't want to take the chance that they ...

Discover More

Starting Chapters on Odd-Numbered Pages

Want to start a new heading on an odd-numbered page? You can do it with section breaks, obviously, but you can also do it ...

Discover More

Solve Real Business Problems Master business modeling and analysis techniques with Excel and transform data into bottom-line results. This hands-on, scenario-focused guide shows you how to use the latest Excel tools to integrate data from multiple tables. Check out Microsoft Excel Data Analysis and Business Modeling today!

More ExcelTips (ribbon)

Extracting a State and a ZIP Code

Excel is often used to process or edit data in some way. For example, you may have a bunch of addresses from which you ...

Discover More

Counting Cells with Specific Characters

Excel is used by many people to hold all sorts of data, not just numbers. If you have cells that include meaningful ...

Discover More

Randomly Assigning Names to Items

If you need to randomly match up items in two lists, there are a variety of techniques you can use. Here are a couple of ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is six more than 1?

2025-08-28 14:29:33

J. Woolley

The NameOf function in My Excel Toolbox can return the current workbook's path like this:
    =NameOf("path")
It is described in my comment here: https://excelribbon.tips.net/T011766


2025-08-27 12:26:03

J. Woolley

Here's another way to view the current workbook's path:
1. Press F12 to open the Save As dialog
2. Observe the path at the top of the dialog
3. Click the folder icon at the left of the path
4. You can press Ctrl+C to copy the path
5. Click Cancel to close the dialog


2025-08-25 17:29:45

Francisco de Jesus Orozco Ruiz

Hi! To find the current workbook location I prefer adding it permanently to the quick tool bar: Click File > Options > Quick Access Toolbar, then in the "Choose commands from" dropdown, select All Commands. Scroll down, find and select Document Location (or Address [Document Location]), then click Add >>. Finally, Click OK. The path of the work book appears in the tool bar inside a text box and can be copied from it easily. Unfortunately, this only works for desktop versions, as Excel 365 for web does not have a Quick ToolBar (yet).


2025-08-23 11:13:28

David Z

I have found that inserting the below macro and adding it to Quick Access Toolbar returns the same result:

Sub ShowFilePath()
ActiveWindow.Caption = ActiveWorkbook.FullName
End Sub


2025-08-23 05:02:36

Steve Woodward

Hi Alan,

I use this formula a lot but cannot get it to work in the web version of excel 365.


2025-08-23 04:59:09

Alex Blakenburg

If you have Excel 2024 or MS365 then maybe: =TEXTBEFORE(CELL("filename", $A$1),"[")


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.