Nov 24, 2004 #1 metalboy Technical User Apr 1, 2004 97 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
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
Nov 24, 2004 1 #2 jcrater Programmer Jul 17, 2002 87 US Use the Workbook_Open event of the "This Workbook" object: MsgBox "This workbook last saved by " & ActiveWorkbook.BuiltinDocumentProperties("Last Author") Upvote 0 Downvote
Use the Workbook_Open event of the "This Workbook" object: MsgBox "This workbook last saved by " & ActiveWorkbook.BuiltinDocumentProperties("Last Author")
Nov 24, 2004 #3 jcrater Programmer Jul 17, 2002 87 US Oops. Forgot about the saved time: ActiveWorkbook.BuiltinDocumentProperties("Last Save Time") Upvote 0 Downvote