Hi everyone!
I’m trying to update a column with a date when the status of any deal within my CRM changes (for example, if the status changes from “Engaged” to “Meeting Scheduled”, I want the column “Schedule Date” to update with the date when the change happened).
I’ve been trying with the following formula:
IF(thisRow.Status=[AnyValueWithinStatus] ,thisRow.Status.Modified(),"")
The thing is, when I change the status for that same record (for example, I move the deal from Meeting Scheduled to Won), the “Schedule Date” goes away and a date record is created in the “Won date” column.
For more context, here’s a screenshot:
The end result would be: each row for each column will have the date where the status change happened.
Thank you!