Hi
I have the macro set up so it should show when a spreadsheet was last modified by using the following;
Sub DateLastModified()
Dim fs, f
Set fs = CreateObject("Scripting.FileSystemObject")
Set f = fs.GetFile("T:\Jobs\Job Loading\Manual Job Loading\Job Board Brands\CareerStructure.com\Weekly Task Spreadsheet.xls")
Cells(2, 1) = f.DateLastModified
End Sub
and i have the auto run feature of;
Private Sub Workbook_Open()
Run "DateLastModified"
End Sub
However, when the spreadsheet is opened it gives me the date of when i'm opening the document and not when it was last saved by someone else who has just used it?
Can any1 please help!
Thanks
Mike
Bookmarks