Display last date edited in workbook

  • Thread starter Thread starter kathy
  • Start date Start date
Hi Kathy
the following code will display in cell A1 the date the workbook was
saved the last time:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
Range("A1").Value = Date
End Sub

put this in your workbook module and save the file
HTH
Frank
 
Back
Top