I don't know how to get the Last Modified Date to appear
without keying it in myself. I want to update it with a
macro or in conjunction with the save on exit (??) command.
Hi all
Tom mention that this will not work correct in Excel 97.
Use this for Excel 97 in the Thisworkbook module
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, _
Cancel As Boolean)
'If you save the file the date will be placed in cell A1 of Sheet1
Sheets("Sheet1").Range("a1").Value = Date
End Sub
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.