file saved

G

greg

Does anyone have a macro for excel that puts the time the fill was lasted
saved in a cell?
 
F

Frank Stone

hi
In the workbooks before save event add the following code

Private Sub Workbook_BeforeSave(Cancel As Boolean)
Sheets("yoursheet").Range("A1").FormulaR1C1 = Now()
End Sub
 
Top