Hi All,
I think this is a common question, but can't find the answer. I am working with 2013 on a workbook with about 30 sheets/tabs. I would like a timestamp cell in each sheet which will trigger only when another cell in that same sheet is changed. Each sheet timestamp must independent of each other (no interaction between them). I have tried using the Now() function in VBA, and while my function seems to be sheet independent for a while, all the timestamps eventually get re-synchronized to the current time. My function looks like this:
Public Function LastSheetEdit(c As Range)
LastSheetEdit = Now()
End Function
Any help would be appreciated.
Thanks,
ART
I think this is a common question, but can't find the answer. I am working with 2013 on a workbook with about 30 sheets/tabs. I would like a timestamp cell in each sheet which will trigger only when another cell in that same sheet is changed. Each sheet timestamp must independent of each other (no interaction between them). I have tried using the Now() function in VBA, and while my function seems to be sheet independent for a while, all the timestamps eventually get re-synchronized to the current time. My function looks like this:
Public Function LastSheetEdit(c As Range)
LastSheetEdit = Now()
End Function
Any help would be appreciated.
Thanks,
ART