I have a table with a status column. I created a Kanban view for these status and I would like to set the current date when a certain status is set.
For example when status is STARTED
set the started_date
column to NOW()
So I use the following formula :
IF(status = 'STARTED', NOW())
It works to set the date but the issue is when I switch the item to the ENDED
status the started_date
is cleared.
I would like to know if there is a way to set the column value when the condition is true and do nothing when it’s not.
Thnaks