Locating Latest Workbook
Hi,
Which command do I use to locate the latest workbook in A Folder,
I have a series of Excel workbooks, they are named by the date they were saved
i.e. List 01-12-04
List 08-12-04
List 15-12-04 etc.etc.
So Far I have
sub fold()
dim i
i = C:\My Documents\Workbooks.Count
MsgBox C:\My Documents\Workbooks(i)
End Sub
|