fbpx
Search
Close this search box.

Even faster ways to Extract file name from path [quick tip]

Share

Facebook
Twitter
LinkedIn

The best thing about Excel is that you can do the same thing in several ways. Our yesterdays problem – Extracting file name from full path is no different. There are many different ways to do it, apart from writing a formula. Learn these techniques to be a data extraction ninja.

1. Using Find Replace

Suggested by Iain in the comments yesterday, I love this technique for its simplicity and awesomeness.

  1. Select all the file paths
  2. Press CTRL+H
  3. Type *\ in find field
  4. Leave the replace field empty.
  5. Click on Replace all.
  6. Done!

It is that simple. Do not believe me? See this demo.

Extract file name from full path using find replace - Excel tip

Thanks Iain for teaching us this trick.

2. Using Text to columns utility

Buried inside heap of features in Excel is this beautiful Text to columns utility, that can take any text and convert it in to many columns based on the delimiter you specify. [more uses of text to columns]

This is how we can use it:

  1. Select all the file path cells
  2. Go to Data > Text to columns
  3. Chose “Delimited” in step 1 and click next.
  4. Specify delimiter as \Text to columns settings for extracting file name from full path - Excel
  5. Click Finish
  6. You will get all folders in to separate cells and file name in last cell.
  7. Now use a formula like =INDEX($C3:$O3,COUNTA($C3:$O3)) to extract the last cell’s value ie file name
  8. Done!

Extracting file name from path using text to columns utility and formulas - how to?

3. Using UDFs

While our formula method tends to be very long or very complicated, we can use 1-2 line VBA to get the file name from a full path. There are many ways to skin this cat in VBA, but 2 easiest methods are,

For both methods below, you first need to insert a new module and add the code in that.

Using InStrRev

As suggested by Daniel Ferry in the comments.

Public Function ParseFile(sPath As String) As Variant
ParseFile = Array(Mid$(sPath, 1 + InStrRev(sPath, “\”)), Mid$(sPath, 1 + InStrRev(sPath, “.”)))
End Function

Note: this UDF returns an array for file name & extension. So you need to enter it in 2 cells together.

The InStrRev() built in function searches for \ in the sPath from end and returns the first occurrence’s position.

Using split

As suggested by PPH in comments,

Function ExtractFileName(filepath) As String

Dim x As Variant
x = Split(filepath, Application.PathSeparator)
ExtractFileName = x(UBound(x))

End Function

What is your favorite method?

For most of my data cleaning needs, I use a mix of text to columns, find-replace or VBA. In rare cases, I rely on a formula. This is because data cleaning or extraction is usually one time step and figuring out a complex formula is not good idea in such cases.

What about you? How do you go about extracting filenames, dates, numbers etc. buried in text? What method do you use often? Please share with us in comments.

More tips on Data Extraction:

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Excel School made me great at work.
5/5

– Brenda

Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

letter grades from test scores in Excel

How to convert test scores to letter grades in Excel?

We can use Excel’s LOOKUP function to quickly convert exam or test scores to letter grades like A+ or F. In this article, let me explain the process and necessary formulas. I will also share a technique to calculate letter grades from test scores using percentiles.

10 Responses to “Even faster ways to Extract file name from path [quick tip]”

  1. Stephen says:

    To import a file list to excel:
    1) Create a batch file in a directory other than the one you are looking in (the root directory would work): name it something like filelist.bat
    In the file, type:
    @ECHO OFF
    DIR "C:\Whateverfolder\*.jpg" > "C:\Temp\filelist.txt"

    If you double click on that file, you will create a file in C:\temp called filelist.txt that will have all of the files in that directory.

    2) Use windows' task scheduler program to run that batch file at some time interval (once a day, every 5 minutes, whatever you think is reasonable for the folder)

    3) In the excel workbook, import data from text, to make a data table from the filelist.txt file in the C:\temp directory. Select the properties, deselect where it says to prompt for the file name, and have it update on the file opening and whatever time interval you specified.

    That works especially well on network drives where multiple users might be adding files.

     

  2. Stephen says:

    sorry, change that *.jpg to *.* to list all files, or change the extension as desired.  You can also add a -s between the second double quote and the greater than symbol to look in all of the subdirectories (be careful there - if you look in C:\ or C:\windows and search all subdirectories, you will get a huge file).

  3. Wookiee says:

    I just wanted to note that there was a typo in the UDF for ExtractFileName. In one place, the variable is defined as filespath, but in the calculation formula, the variable appears as filepath.

  4. Shmuel says:

    Hi All.

    In a slight modification of the Text To Columns option, in step 3 of 3 of the Text To Columns procedure, the last radio button under Column Data Format allows you to specify those columns you do NOT wish to import.

    Thus in the display at the bottom of the dialogue box, you can Shift-Select all the columns before the file name, click Do Not Import Column (Skip) then Finish.

    Only the file name is imported!
     

  5. Shmuel says:

    In my haste I did not appreciate the fact that there are several records that will result in different numbers of columns.

    In which case the option I mentioned above would workbench appropriate.

    Apologies 

  6. Bhavik says:

    Vba as suggested by PPH is not correct.

    Corrected version is below

    Function ExtractFileName(filepath) As String
     
    Dim x As Variant
     x = Split(filepath, Application.PathSeparator)
     ExtractFileName = x(UBound(x))
     
    End Function
     

  7. zx8754 says:

    Modified Text To Columns option

    If you want to avoid using formulas, then after Step 6:
    1. Highlight all
    2. Press Ctrl+G, Special, Blanks
    3. Type "=", press left arrow, then Ctrl+Enter.

    The last column will have file names. 

  8. Shyam says:

    I'd like to know how you created that animation of selection, find/replace. Looks cool in emails.

  9. EyeRejuv says:

    Well I truly liked studying it. This tip procured by you is very constructive
    for correct planning.

Leave a Reply