Here is a video of what I am trying to do.
Here is a video of what I am trying to do.
Hi @Marni_Melrose - thanks for the video but it is little hard to see what is going on - could you share the doc here or with support!@coda.io and we can try to help.
Hi @Marni_Melrose, Instead of using automation, why not a simple if statement - if(Status = “Complete”, Today(), “”)?
This way any change in status is immediately reflected in the “Complete” column.
I think I figured out your issue.
Your “Then” step is doing a logic test, instead of modifying the data.
I figured out how to do the same setup on my project just now and this is my Then statement:
ModifyRows(thisRow.[Step 1 Result], [Master Task List].Completed, Today())
So I THINK this would work for your document:
ModifyRows(thisRow.[Step 1 Result], [Step 1 Result].Complete Date, Today())
Thanks I finally figured that out too.