+ Reply to Thread
Results 1 to 7 of 7

Function to extract certain words in file name and have certain cells in Excel update them

  1. #1
    Registered User
    Join Date
    04-05-2012
    Location
    Mount Olympus
    MS-Off Ver
    Excel 2003
    Posts
    27

    Function to extract certain words in file name and have certain cells in Excel update them

    Hello,

    I need a function to extract certain words in a file name (located in a specific folder) and have certain cells in Excel automatically update themselves according to the files inside the folder.

    For example, I have a folder called "Completed Projects".

    In this folder I have one file called, "Revision Level (Nil)". In Excel, a cell in should be able to automatically enter the following data "Rev Level 0". Let's just say that this cell is located in Column B. When I add another file with the title "Revision One", the next row of Column B should reflect "Rev Level One" and so on.

    Is this possible? If so, what's the name of the function? I tried googling but so far I've only come up with Filelen( ) for checking file size data and not much else.

    Thanks in advance.



    Brah.
    Last edited by brah; 04-23-2012 at 04:08 AM.

  2. #2
    Valued Forum Contributor
    Join Date
    06-16-2006
    Location
    Sydney, Australia
    MS-Off Ver
    2013 64bit
    Posts
    1,394

    Re: Function to extract certain words in file name and have certain cells in Excel update

    You need to use VBA to be able to return file names into cells in Excel. The VBA function is called DIR.

    http://en.allexperts.com/q/Excel-105...reate-List.htm

  3. #3
    Registered User
    Join Date
    04-05-2012
    Location
    Mount Olympus
    MS-Off Ver
    Excel 2003
    Posts
    27

    Re: Function to extract certain words in file name and have certain cells in Excel update

    Quote Originally Posted by Mallycat View Post
    You need to use VBA to be able to return file names into cells in Excel. The VBA function is called DIR.

    http://en.allexperts.com/q/Excel-105...reate-List.htm
    Hi Mally, would this work for PDF files too? as most of the files I'm working with are in PDF format.

  4. #4
    Forum Contributor
    Join Date
    12-28-2011
    Location
    England
    MS-Off Ver
    Excel 2007
    Posts
    280

    Re: Function to extract certain words in file name and have certain cells in Excel update

    It will work with files of any type e.g.:

    Please Login or Register  to view this content.
    For testing your Regular Expression patterns, try my Regular Expression Pattern Testing add-in!

    For notes on how to use it - see here.

  5. #5
    Registered User
    Join Date
    04-05-2012
    Location
    Mount Olympus
    MS-Off Ver
    Excel 2003
    Posts
    27

    Re: Function to extract certain words in file name and have certain cells in Excel update

    Quote Originally Posted by Firefly2012 View Post
    It will work with files of any type e.g.:

    Please Login or Register  to view this content.
    Thanks firefly, I'm experimenting with it now.

    Edit:

    Works fine, but if I were to use this method it would involve a lot of renaming of files else the list would appear very messy. Is there another way of doing this? Instead of calling the file extension, the function will look for certain keywords in the file name?

    Thanks.
    Last edited by brah; 04-23-2012 at 09:02 PM.

  6. #6
    Forum Contributor
    Join Date
    12-28-2011
    Location
    England
    MS-Off Ver
    Excel 2007
    Posts
    280

    Re: Function to extract certain words in file name and have certain cells in Excel update

    The string you pass to Dir can contain wildcard characters (you've seen one * meaning one or more of any character). You can build up your string using wildcards, for example, assume you want to find a file with the word "restaurant" in he title then you can find such a file with:

    Please Login or Register  to view this content.
    Which will return the first file that contains "restaurant" anywhere within the filename.

    If you have a lot of potential keywords you want to find, it might be worth returning all the filenames from the folder (eg using Dir), store them maybe in an array and then iterate over the array searching for each keyword.

  7. #7
    Registered User
    Join Date
    04-05-2012
    Location
    Mount Olympus
    MS-Off Ver
    Excel 2003
    Posts
    27

    Re: Function to extract certain words in file name and have certain cells in Excel update

    Okay thanks Firefly, I'll work on it.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1