======Microsoft - Office - Scripting - VBA - Excel====== =====Snippets===== ====Display Last Saved Date on worksheet==== Insert VBA module with code: Function LastSavedTimeStamp() As Date LastSavedTimeStamp = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time") End Function Formula for cell: =LastSavedTimeStamp() Source: Richard.Gale on [[http://stackoverflow.com/questions/26489418/display-last-saved-date-on-worksheet|stackoverflow - Display Last Saved Date on worksheet]]