Hey man,
The Workbook has a property named 'BuiltinDocumentProperties' that you can use to get pieces of information about the document. One of these is the Last Save Time
Cells(1, 1) = ActiveWorkbook.BuiltinDocumentProperties(12)
12 is the last saved time property. This will return an error is the workbook hasn't been saved.
|