Forum Discussion
RiverKing
Dec 14, 2021Copper Contributor
Date/Time Stamp a Changed Excel Entry
I want to add a date/time stamp to each row when that row is updated. I know I could do this in a macro but the workbook might need to be used in mobile Excel Online and macros aren't supported there.
Is there a way to do what I want in a formula? In pseudo-code, it would be something like "If a1 changed then a2 = NOW().
RiverKing You'll need something as described in the attached link:
5 Replies
Sort By
- Riny_van_EekelenPlatinum Contributor
RiverKing You'll need something as described in the attached link:
- RiverKingCopper ContributorRiny
This is exactly what I needed!
I won't pretend that I understand exactly how it's working but it's doing what I wanted. I did, of course, have to change all of the column references in the linked example and I changed the "n/a" to "".
Thank you, Sir.
- RiverKingCopper ContributorThanks for the suggestion but this is something I've already tried. The problem with it is that changing column A in any row resets NOW() for all rows in which An<>Nn.
- This is how it should be, because the Now function is a Volatile function. As time changes constantly, the Now function will also change constantly. Changes in any cell of the Tab (Worksheet) you are in will update the Now function. As far as I understand, you want the date of the change to remain constant. Right?