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