Date Stamp

M

Maxwewll

Hello,

I have a worksheet that I have some people working on
(work in progress). I need the spreadsheet to date stamp
each time anyone goes in and alters the sheet. Basically
I want to say "Last update was: (Date Stamp)"

Please help
 
N

Norman Harker

Hi Maxwewll!

One way you might consider is to use a Workbook_BeforeSave event
handler:

Private Sub Workbook_BeforeSave(ByVal _
SaveAsUI As Boolean, Cancel As Boolean)
Sheets(1).Range("A1") = "Last saved " & Now
End Sub



This goes in the ThisWorkbook module.






--
Regards
Norman Harker MVP (Excel)
Sydney, Australia
(e-mail address removed)
Excel and Word Function Lists (Classifications, Syntax and Arguments)
available free to good homes.
 

Ask a Question

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.

Ask a Question

Top