In my folder, I have a tracker, and also a sheet that is saved down manually every hour which feeds and updates the main tracker.
The tracker, is called "Tracker" and the feed in extract, is called "Extract"
I am trying to find a solution to display the date and time it was last updated.
I am wondering if there is a way of referencing the Extract sheet that is saved down, and use the timestamp where it was created to display in a cell.
The cell would need (ideally) to be updated automatically (rather than having to click in and update)
I have found module code that saves the date and time (manually) of the last saved date of the current workbook, and don't know if there is a way of modifying this at all?
The tracker, is called "Tracker" and the feed in extract, is called "Extract"
I am trying to find a solution to display the date and time it was last updated.
I am wondering if there is a way of referencing the Extract sheet that is saved down, and use the timestamp where it was created to display in a cell.
The cell would need (ideally) to be updated automatically (rather than having to click in and update)
I have found module code that saves the date and time (manually) of the last saved date of the current workbook, and don't know if there is a way of modifying this at all?
VBA Code:
Function LastSavedTimeStamp() As Date
LastSavedTimeStamp = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time")
End Function