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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Last saved by 1

Status
Not open for further replies.

Cage

MIS
Aug 25, 2002
50
CA
Does anyone know how I can tell who lasted saved a document using VBA?

TIA

Cage
 
Something like this:

Code:
Sub test()
Dim msg As String
msg = "Last Saved By: "
msg = msg & ThisWorkbook.BuiltinDocumentProperties("Last Author") & vbCrLf
msg = msg & "Date Saved: " & ThisWorkbook.BuiltinDocumentProperties("Last Save Time")
MsgBox msg
End Sub

I hope this helps!



Peace! [peace]

Mike

Never say Never!!!
Nothing is impossible!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top