Table of Contents

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 stackoverflow - Display Last Saved Date on worksheet