Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Although found under the Properties section, is it possible to display
on the worksheet the Last Saved By date and Last Saved By user? |
#2
![]() |
|||
|
|||
![]()
Hi Annabelle
With code you can do this Copy this event in the Thisworkbook module It will automatic run when you save the file Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean) Sheets("Sheet1").Range("A1").Value = ThisWorkbook.BuiltinDocumentProperties("Last Save Time") Sheets("Sheet1").Range("A2").Value = ThisWorkbook.BuiltinDocumentProperties("Author") End Sub -- Regards Ron de Bruin http://www.rondebruin.nl "Annabelle" wrote in message oups.com... Although found under the Properties section, is it possible to display on the worksheet the Last Saved By date and Last Saved By user? |
#3
![]() |
|||
|
|||
![]()
I modified to code to fit my worksheet name and the cells I expect to
see the data - works great; however, the User name appears to be coming from whatever name was updated in the Properties Summary tab. Can I use the name (or network name) of the actual person who last saved the file? This is the name listed in the Properties Statistics tab. There will be up to five or six folks who can make changes and save this worksheet, so it's important to know who last saved the document. Thanks for your help. |
#4
![]() |
|||
|
|||
![]()
Hi Annabelle
Try Sheets("Sheet1").Range("A2").Value = Environ("username") -- Regards Ron de Bruin http://www.rondebruin.nl "Annabelle" wrote in message ups.com... I modified to code to fit my worksheet name and the cells I expect to see the data - works great; however, the User name appears to be coming from whatever name was updated in the Properties Summary tab. Can I use the name (or network name) of the actual person who last saved the file? This is the name listed in the Properties Statistics tab. There will be up to five or six folks who can make changes and save this worksheet, so it's important to know who last saved the document. Thanks for your help. |
#5
![]() |
|||
|
|||
![]()
Perfect! Thank you again for your help.
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dates are saved with a future date | New Users to Excel | |||
Recurring annual events using a specific date as a trigger date | Excel Worksheet Functions | |||
Showing date last saved | Excel Discussion (Misc queries) | |||
Exporting from MYOB to Excel the date cell doesn't display as dat. | Excel Worksheet Functions | |||
store file saved date in cell | Excel Worksheet Functions |