Hi Robert,
There have been postings here asking how to put date/time stamp in header/footer of printed report. If this would suit you needs, use your browser's Search/Find to look for footer.
Kevin
Hi Robert
Right click on the sheet picture, top left next to "File" and select "View Code". Paste in this code:
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
If Cancel = True Then Exit Sub
Sheets("Sheet1").Range("A1") = Time
End Sub
Push Alt+Q to return to Excel
Dave
OzGrid Business Applications
Dave,
Thank you for taking the time to help me out. Your solution worked perfectly for giving me the time, however I had to modify it as follows to give me the Time + Date (I'm enclosing just in case someone else has this problem):
Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
If Cancel = True Then Exit Sub
Sheets("Sheet1").Range("A1") = Date + Time
End Sub
Again, many thanks for taking the time to help me out.