For those that want to try my method, here is a short test for the first file found part. See the commented thread for the aFFs() routine and supporting routine.
'2nd part #5, https://www.excelforum.com/excel-programming-vba-macros/1146991-invalid-procedure-call-or-argument-error.html
Sub Test_aFirstFile()
Dim p As String, a, fn As String
p = "d:\myfiles\excel\test\"
a = aFFs(p, , True)
fn = aFirstFile(a, "Test.xls")
MsgBox fn
End Sub
Function aFirstFile(arrayFullPaths, aFile As String)
Dim f
On Error Resume Next
f = Filter(arrayFullPaths, "\" & aFile, True, vbTextCompare)
aFirstFile = f(0)
End Function
Bookmarks