Import Sheet from Most Recent File in a Folder

David04Ruiz

New Member
Joined
Aug 29, 2022
Messages
18
Office Version
  1. 365
Platform
  1. Windows
Hi all, I wanted to see if there was a way to import a sheet into my workbook from the most recent file in a specified folder? I know how to import a closed workbook based off of the file name but I wanted to import it based off the file creation date if possible. I want to import the first sheet of the closed most recent workbook. Super new to VBA so if anyone has a recommendation of how to do this id very much appreciate it!
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
You would put that VBA code in the workbook that you want to copy the data to.
Once opened, you copy/paste what you need, then close the workbook.
You can get a lot of the code you need for that by using the Macro Recorder, performing those tasks manually, then closing the workbook.

There are a bunch of threads out there which already do stuff like this, such as this one:
They would just require some minor edits to suit your conditions (i.e. sheet names and ranges to copy).
 
Upvote 0
You would put that VBA code in the workbook that you want to copy the data to.
Once opened, you copy/paste what you need, then close the workbook.
You can get a lot of the code you need for that by using the Macro Recorder, performing those tasks manually, then closing the workbook.

There are a bunch of threads out there which already do stuff like this, such as this one:
They would just require some minor edits to suit your conditions (i.e. sheet names and ranges to copy).
Yeah I've been having trouble coding it to open, extract from, and close the sheet that it opens.

I found this code below on Stack Overflow that imports EVERY sheet from the most recent file into my workbook. Would you happen to know of how to adjust it so that only the first sheet (or "Sheet1") gets imported into my workbook?


VBA Code:
Function NewestFile(directory, FileSpec)
' Returns the name of the most recent file in a Directory
' That matches the FileSpec (e.g., "*.xls").
' Returns an empty string if the directory does not exist or
' it contains no matching files
    Dim fileName As String
    Dim MostRecentFile As String
    Dim MostRecentDate As Date
    If Right(directory, 1) <> "\" Then directory = directory & "\"

    fileName = Dir(directory & FileSpec, 0)
    If fileName <> "" Then
        MostRecentFile = fileName
        MostRecentDate = FileDateTime(directory & fileName)
        Do While fileName <> ""
            If FileDateTime(directory & fileName) > MostRecentDate Then
                 MostRecentFile = fileName
                 MostRecentDate = FileDateTime(directory & fileName)
             End If
             fileName = Dir
        Loop
    End If
    NewestFile = MostRecentFile
End Function


Private Sub CommandButton1_Click()

Dim directory As String, fileName As String, sheet As Worksheet, total As Integer

directory = "C:\ExcelPract\"
fileName = NewestFile(directory, "*.xls")


Do While fileName <> ""
    Workbooks.Open (directory & fileName)

    For Each sheet In Workbooks(fileName).Worksheets
        total = Workbooks("Docket .xls").Worksheets.Count
        Workbooks(fileName).Worksheets(sheet.Name).Copy _
        after:=Workbooks("Docket .xls").Worksheets(total)
    Next sheet

    Workbooks(fileName).Close
    fileName = Dir()
Loop

Application.ScreenUpdating = True
Application.DisplayAlerts = True

End Sub
 
Upvote 0
You will need to remove the loop which goes through all the sheets:
VBA Code:
    For Each sheet In Workbooks(fileName).Worksheets
        total = Workbooks("Docket .xls").Worksheets.Count
        Workbooks(fileName).Worksheets(sheet.Name).Copy _
        after:=Workbooks("Docket .xls").Worksheets(total)
    Next sheet
and replace it with just the one copy command:
VBA Code:
        Workbooks(fileName).Worksheets(sheet.Name).Copy _
            after:=Workbooks("Docket .xls").Worksheets(total)
substituting in the names that pertain to your workbooks/worksheets.
 
Upvote 0
You will need to remove the loop which goes through all the sheets:
VBA Code:
    For Each sheet In Workbooks(fileName).Worksheets
        total = Workbooks("Docket .xls").Worksheets.Count
        Workbooks(fileName).Worksheets(sheet.Name).Copy _
        after:=Workbooks("Docket .xls").Worksheets(total)
    Next sheet
and replace it with just the one copy command:
VBA Code:
        Workbooks(fileName).Worksheets(sheet.Name).Copy _
            after:=Workbooks("Docket .xls").Worksheets(total)
substituting in the names that pertain to your workbooks/worksheets.
That works thanks! It pulls in the correct workbook sheet, the only issue is the following error message shows every time I run it:
 

Attachments

  • Screenshot 2022-10-19 192752.png
    Screenshot 2022-10-19 192752.png
    77.2 KB · Views: 12
Upvote 0
I think "Filename" is a reserved word in Excel VBA (meaning it is already used for some system setting).
Using reserved words as variables can cause errors and unexpected results, as VBA may not be able to determine if you are calling your variable, or the built-in reference).

Try changing all your references of "fileName" to something like "fName", and see if that clears it up.
 
Upvote 0
That works thanks! It pulls in the correct workbook sheet, the only issue is the following error message shows every time I run it:
The Dir is the second part of a pair of statements and you are doing all that in the function.
The function has already returned the File you want so your main routine does not need any of the looping.

Remove the struck out lines.

Rich (BB code):
Do While fileName <> ""
    Workbooks.Open (directory & fileName)

        Workbooks(fileName).Worksheets("Template").Copy _
            after:=Workbooks("Book1.xlsm").Worksheets("Sheet1")

    Workbooks(fileName).Close
    fileName = Dir()
Loop

PS: An example of the pair of Dir statements are in the function
VBA Code:
fileName = Dir(directory & FileSpec, 0)
' This next line won't work without the previous line
fileName = Dir
 
Upvote 0
The Dir is the second part of a pair of statements and you are doing all that in the function.
The function has already returned the File you want so your main routine does not need any of the looping.

Remove the struck out lines.

Rich (BB code):
Do While fileName <> ""
    Workbooks.Open (directory & fileName)

        Workbooks(fileName).Worksheets("Template").Copy _
            after:=Workbooks("Book1.xlsm").Worksheets("Sheet1")

    Workbooks(fileName).Close
    fileName = Dir()
Loop

PS: An example of the pair of Dir statements are in the function
VBA Code:
fileName = Dir(directory & FileSpec, 0)
' This next line won't work without the previous line
fileName = Dir
Ah yes, this morning I forgot that we were just dealing with one file again (sometimes I get lost amongst the various threads when I help on a whole bunch and they spill over into multiple days).
Time for my morning caffeine jolt! :sleep:
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,450
Messages
6,124,912
Members
449,195
Latest member
Stevenciu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top