Please Note: This article is written for users of the following Microsoft Excel versions: 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021. 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 Parent Folder.

Finding the Parent Folder

Written by Allen Wyatt (last updated November 12, 2022)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, Excel in Microsoft 365, and 2021


8

Lawrence asked if there was a way to devise a formula that would return the name of the parent folder for the current workbook file. He wanted this to return just the folder name, and he wanted it to be derived using a regular Excel formula, not a macro or user-defined function.

The answer is, yes, it is possible to figure out the parent folder using a formula, but the formula is rather long and complicated. There were several examples of formulas submitted by readers; the following formula is the most concise:

=MID(CELL("filename"), FIND(CHAR(1), SUBSTITUTE(CELL("filename"),
"\", CHAR(1), LEN(CELL("filename")) - LEN(SUBSTITUTE(CELL("filename"),
"\", "")) - 1)) + 1, FIND("[", CELL("filename")) - 2 - FIND(CHAR(1),
SUBSTITUTE(CELL("filename"), "\", CHAR(1), LEN(CELL("filename")) -
LEN(SUBSTITUTE(CELL("filename"), "\", "")) - 1)))

Please note that this is a real formula; it must appear on a single line in a cell. It relies on the CELL function with the "filename" parameter, which returns the entire path and filename for the current workbook.

The formula works by using the number of backslashes in the complete file path, and then replacing the second to the last slash with an ASCII value of 1. This value is then used as a "positioning aid" to help extract the parent folder's name.

If you are using the version of Excel provided with Microsoft 365, you can use a much shorter formula that utilizes a couple of the new text-related functions:

=TEXTAFTER(TEXTBEFORE(CELL("filename"),"\",-1),"\",-1)

In this usage, the TEXTBEFORE function returns everything to the left of the final backslash and the TEXTAFTER function returns everything in that text after the final remaining backslash. It returns the exact same parent folder name as is done by the earlier, longer formula.

Finally, you should note that regardless of the formula you use, you will get a #VALUE error until you save the workbook in which the formula is contained. Until that point, there is no path to analyze, so the various functions in the formula return a #VALUE error.

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

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

Understanding Background Saving

Word has the capability to save your work, in the background, while you continue to edit your documents. This tip ...

Discover More

Copying Rows and Columns with the Mouse

Word allows you to do quite a few editing tasks using the mouse. If you want to copy rows or columns in a table, you can ...

Discover More

Transposing Two Words

A common editing task is to transpose two adjacent words, so that their order is changed. While the task is common, there ...

Discover More

Create Custom Apps with VBA! Discover how to extend the capabilities of Office 2013 (Word, Excel, PowerPoint, Outlook, and Access) with VBA programming, using it for writing macros, automating Office applications, and creating custom applications. Check out Mastering VBA for Office 2013 today!

More ExcelTips (ribbon)

Comma-Delimited and MS-DOS CSV Variations

Excel provides different file formats you can use to export your worksheet information. One such file format is CSV, or ...

Discover More

Saving in Two Locations

When you save a workbook to disk, you may want to automatically save a duplicate workbook in a separate location. This ...

Discover More

Importing Huge Data Files

Sometimes, when importing data created by other programs, you may find that there is too much for Excel to handle. Here's ...

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 1 + 1?

2022-11-19 04:19:27

Ian Hills

I think it is best to agree to disagree at this point.
I am happy for you to use a difficult method to solve an easy problem if that is your thing. My thing is to make things easier if I can.
So perhaps it's just that we have different goals. I am focusing on using Excel to work on other things, so I am looking for quick and easy solutions. I'm assuming that you are more interested in Excel as a puzzle to solve in its own right and so less interested in the practicalities. More power to you. I like puzzles too.


2022-11-18 09:35:17

J. Woolley

@Ian Hills
The first sentence of the article is "Lawrence asked if there was a way to devise a formula that would return the name of the parent folder for the current workbook file."


2022-11-18 05:04:04

Ian Hills

@philip the title of the article is Finding the Parent Folder. 'Finding the folder' not 'finding a formula.' I think my way is an easier, more direct way of finding the folder.


2022-11-17 08:44:48

J. Woolley

Notice CELL("filename") does not always update when switching between multiple open workbooks. Press F9 to update.


2022-11-16 13:02:57

Mike J

In excel 2010, with two saved files and one unsaved file, each containing this formula and visible, the formula will report the folder of the active workbook in all three windows (or #VALUE if the unsaved workbook is selected) see attached. If however the three files are in separate instances of excel, the formula works as described, so probably fine in later versions - possibly the CELL() function is Instance specific and not File specific.
(see Figure 1 below)
(see Figure 2 below)
(see Figure 3 below)

Figure 1. Saved TestFile 1

Figure 2. Saved TestFile 2

Figure 3. Unsaved File Book2


2022-11-14 09:56:07

J. Woolley

My Excel Toolbox includes the following function to return the substring of Text between two substrings BeginAfter and EndBefore:
=Between(Text,BeginAfter,EndBefore,[CaseSensitive],[Direction])
If Direction is -1, the search is right-to-left for both BeginAfter and EndBefore; therefore, this formula returns the workbook's parent folder:
=Between(CELL("filename"),"\","\[",,-1)
My Excel Toolbox includes two more functions that are useful for this subject:
=FindRev(FindText,WithinText,[StartNum],[CaseSensitive])
=NameOf([This],[Target])
FindRev searches in reverse (right-to-left) to return the location of FindText in WithinText. (See Excel's FIND and VBA's InStrRev functions.)
NameOf is described in the following two articles:
https://excelribbon.tips.net/T007850#comment-form-hd
https://wellsr.com/vba/2019/excel/vba-udf-to-enhance-excel-cell-and-info-functions/
NameOf("path") returns the path of the formula cell's workbook; therefore, this formula returns the workbook's parent folder:
=MID(NameOf("path"),FindRev("\",NameOf("path"))+1,999)
Excel 365 and 2021+ include the LET function; here are two formulas using LET:
=LET(P,NameOf("path"),MID(P,FindRev("\",P)+1,999))
=LET(P,NameOf("path"),RIGHT(P,LEN(P)-FindRev("\",P)))
Notice CELL("filename") does not always update when switching between two open workbooks. (Press F9 to update.) NameOf is Volatile, so that is not a problem.
See https://sites.google.com/view/MyExcelToolbox


2022-11-14 01:47:47

Philip

@Ian, the question to which this tip responds, is "finding a formula" that does this ...


2022-11-12 08:40:54

Ian Hills

If you mean what I think you mean, this can also be achieved by right-clicking on the file's title. This results in a dropdown that lists the file path of the file.


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.