Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel - Message box stating date and user 1

Status
Not open for further replies.

metalboy

Technical User
Apr 1, 2004
97
0
0
GB
Hey all,

Is itpossible to show with a message box who and when last updated a workbook with a message box on open?

Regards

Alex

“It is a mistake to think you can solve any major problems just with potatoes.”
Douglas Adams
 
Use the Workbook_Open event of the "This Workbook" object:

MsgBox "This workbook last saved by " & ActiveWorkbook.BuiltinDocumentProperties("Last Author")

 
Oops. Forgot about the saved time:
ActiveWorkbook.BuiltinDocumentProperties("Last Save Time")
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top