Hi,
In a task table, which has ‘Start date’ and ‘Status’, is there a way to set it up so that it assigns Today() to ‘Start date’ when its ‘Status’ changes to ‘In Progress’ from ‘Not started’?
Jaewon
Hi,
In a task table, which has ‘Start date’ and ‘Status’, is there a way to set it up so that it assigns Today() to ‘Start date’ when its ‘Status’ changes to ‘In Progress’ from ‘Not started’?
Jaewon
Dear @Jaewon_Jung,
Hopeful the below solves your question:
In the column “Start Date” you should put the following IF statement:
If(Status="In Progress",Today(),"")
Meaning: If status = in progress display today’s date if not keep empty.
Kind regards,
Jean Pierre
You could also try buttons. This would give you a date of when the button was clicked…
The Start button configuration looks like this:
The Finish button configuration looks like this:
I guess in that case the ‘Start Date’ will keep changing (for instance to 10/6 the next day) as it remains in ‘In Progress’ state? Which is not what I want.
You could set up an Automation so that when the value is changed to In Progress, it will update the Start Date. Using that method, your Start Date will remain the same unless someone switches the status to something else, then back to In Progress again.
I tried this solution and could not for the life of me get it to actually place a date in the column. Not a big fan of the buttons either.