+ Reply to Thread
Results 1 to 3 of 3

Importing All Files in a Folder

Hybrid View

  1. #1
    Registered User
    Join Date
    12-18-2012
    Location
    Pittsburgh, PA
    MS-Off Ver
    Excel 2003
    Posts
    2

    Importing All Files in a Folder

    Hi everyone. I'm pretty new to excel macros and VBA, but I'm trying to figure out tricks that will make my work go more smoothly.

    What I'm working on now is a series of experiments that each generate .csv files, which I then do some simple data analysis on. I want to make a macro that will take a csv file, import it to a specific worksheet, do the analysis, clear that worksheet, and then move on to the next file and do the same thing. It would run the same analysis on every csv file in a specific folder, and give me a summary at the end. It's all straightforward, for the most part, and I can puzzle through most of it. The only problem I'm running into is this: the files aren't being generated with a predictable naming scheme, so I can't just set it to a simple for loop. Is there any way to do this in spite of that?
    Last edited by Nolanar; 12-20-2012 at 01:35 PM. Reason: Problem Solved.

  2. #2
    Forum Expert
    Join Date
    07-15-2012
    Location
    Leghorn, Italy
    MS-Off Ver
    Excel 2010
    Posts
    3,431

    Re: Importing All Files in a Folder

    If you don't need to open files in defined order ther'is no problem with this loop
    Sub OpenTxtFiles()
    Dim folderPath As String, fileName As String, WB As Workbook
    folderPath = "D:\test\"
    fileName = Dir(folderPath & "*.csv")
    Do While fileName <> ""
       Set WB = Workbooks.Open(folderPath & fileName)
       'your code here
       WB.Close False
       fileName = Dir
    Loop
    End Sub
    If solved remember to mark Thread as solved

  3. #3
    Registered User
    Join Date
    12-18-2012
    Location
    Pittsburgh, PA
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Importing All Files in a Folder

    Thanks, that did it! The whole thing works perfectly now.

+ 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