Insert Date sheet was modified

  • Thread starter Thread starter Alex Burman
  • Start date Start date
Thanks. Spot on.
Otto Moehrbach said:
Alex
This short macro will put the date the sheet was last modified into cell
A1. Right-click on the sheet tab, select View Code, and paste this macro
into that module. HTH Otto
Private Sub Worksheet_Change(ByVal Target As Range)
[A1] = Date
End Sub
Alex Burman said:
Is it possible to insert the date a sheet was last modified into a sheet
cell?
 
Back
Top