Hello! Noobie here trying to get a bit of help creating a formula. The goal is to get some visibility on when I last commented on a record vs when someone else last commented. This will help me see if they have replied or not so I know to follow up.
I already have two formula fields:
{last commented by me}
(datetime) - this field is set with the timestamp of when I last commented
{last commented by someone else}
(datetime) - this field is set with the timestamp of when anyone but me last commented
So far so good.
Now, let’s say I commented on a record 2 days ago, so the {last commented by me}
field was set to 23/01/22 6:30 pm.
Let’s say it’s now 25/01/22 6:30 pm and I have not yet received a response, so the {last commented by someone else}
field is empty, or maybe before 23/01. I’d like to be notified at this point so I can follow up.
My thinking is to have another formula that calculates the time from now to when I last commented - sort of like a timer.
DATETIME_DIFF(NOW(),{Last Commented by me},‘hours’)
If this “timer” field gets to 48, I should get an email (I can set that up via automation). But if someone comments and the {Last commented by someone else} field gets populated with a date after the 25th, the timer should almost reset to 0. It’s the latter part I’m struggling with…
Hope that all makes sense? Maybe there’s a simpler way to set this up?
Thanks in advance for any assistance!