Hi,
I have found a number of posts on how to run a script when a cell or even a worksheet changes, but what about a workbook?
I have a 12 sheet workbook, and would like the below script to run any time a cell in the workbook is changed. Is that possible?
TIA for any help!
Function LastModified() As Date
LastModified = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time")
End Function
I have found a number of posts on how to run a script when a cell or even a worksheet changes, but what about a workbook?
I have a 12 sheet workbook, and would like the below script to run any time a cell in the workbook is changed. Is that possible?
TIA for any help!
Function LastModified() As Date
LastModified = ActiveWorkbook.BuiltinDocumentProperties("Last Save Time")
End Function