Right click on the Excel icon next to File in the menubar
choose view code
paste it in there
Alt-Q to go back to Excel
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, _
Cancel As Boolean)If you save the file the date will be placed in cell A1of Sheet1
Sheets("Sheet1").Range("a1").Value = Date
End Sub
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
Ron did just that.
right click on the excel icon to the left of FILE on the top toolbar>click
on view code>in the left window select workbook>in the right window select
before_save. copy/paste this macro there.Save the workbook.
Sheets("Sheet1").Range("a1") = Date
Now each time the workbook is saved the date will be placed in cell a1 on
sheet1.
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.