Hello guydixon,
In the future, please start a new thread. You are not supposed to post a new question in another person's thread. Include a link to the post in your question.
Here is a macro to extract the latest Excel files (.xls, .xlsb, .xlsm, ..xlsx) from a folder. There is an example macro to open the second latest modified Excel file in the folder.
' Written: Novemebr 28, 2013
' Author: Leith Ross
' Summary: Return a sorted array of files matching a given pattern from a specified folder.
Function GetFiles(ByVal FilePath As Variant, ByVal FileFilter As String, Optional ByVal SortOrder As Long) As Variant
' Return an array of files matching the filter and sorted by date last modified.
' The array is a zero based n x 1 array. First file name is at (0, 0), the date is at (0, 1).
' SortOrder = xlAscending or xlDescending
' Default sort order is ascending order (A to Z).
Dim FileList As Variant
Dim J As Long
Dim n As Long
Dim oFile As Object
Dim oFiles As Object
Dim oFolder As Object
Dim oShell As Object
Dim Sorted As Boolean
Dim UB As Long
Set oShell = CreateObject("Shell.Application")
Set oFolder = oShell.Namespace(FilePath)
If oFolder Is Nothing Then
MsgBox "Folder Not Found!" & vbCrLf & vbCrLf & "Please check the path is correct." & vbCrLf & FilePath, vbExclamation + vbOKOnly
Exit Function
End If
Set oFiles = oFolder.Items
oFiles.Filter 64, FileFilter
If oFiles Is Nothing Then
MsgBox "No matching files were found.", vbExclamation + vbOKOnly
Exit Function
End If
ReDim FileList(oFiles.Count - 1, 1)
For Each oFile In oFiles
FileList(n, 0) = oFile.Name
FileList(n, 1) = CDate(oFolder.GetDetailsOf(oFile, 3)) ' Date Last Modified
n = n + 1
Next oFile
' Sort the files using a modified bubble sort.
UB = UBound(FileList)
Do
Sorted = True
For J = 0 To UB - 1
If (SortOrder = xlDescending) Xor (FileList(J, 1) > FileList(J + 1, 1)) Then
Temp = FileList(J + 1, 0)
FileList(J + 1, 0) = FileList(J, 0)
FileList(J, 0) = Temp
Temp = FileList(J + 1, 1)
FileList(J + 1, 1) = FileList(J, 1)
FileList(J, 1) = Temp
Sorted = False
End If
Next J
UB = UB - 1
Loop Until Sorted Or UB < 1
GetFiles = FileList
End Function
Example to Open the Second Latest File
Sub Macro1()
Dim FilePath As String
Dim WkbFile As String
FilePath = "C:\Users\Owner\Documents"
' Get the second lastest modified workbook.
WkbFile = FilePath & "\" & GetFiles(FilePath, "*.xls*", xlDescending)(1, 0)
Workbooks.Open (WkbFile)
End Sub
Bookmarks