Sep 06, 2019 06:21 AM
I’m trying to insert a timestamp into a field when a value on a record changes. I’ve got this but it’s not really updating like I was expecting.
IF(Stage=“3. Fruiting”, NOW(),0)
It seems to be updating randomly. Any ideas?
Sep 06, 2019 06:42 AM
NOW()
will always show the current date and time.
You’ll want to use LAST_MODIFIED_TIME()
, instead. Try this:
IF(Stage = "3. Fruiting", LAST_MODIFIED_TIME(Stage))
Hope this helps!
Sep 06, 2019 06:45 AM
That seems to be working! Thanks!