Please share the formula that will auto populate the current date or "Todays Date" in the Completion Date column when the checkbox is populated in the "Done" field.
Hi Lazina,
The TODAY function will always update to the current date so tomorrow it will show that date so to get the date to stick you'd need to use a third-party solution like Zapier or the Smartsheet API.
Hope that helps!
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
I need to know how to write the formula that will populate into the completion date field? example formula: =If(Done), 1=(Today()). I understand how to populate todays date field "Today()" I want todays date to ONLY populate when the "check box" is populated in the "Done" field for that row item. I'm not able to use outside solution such as Zapier, How do I use Smartsheet API?
Try something like this.
=IF(Done@row = 1; TODAY())
The same version but with the below changes for your and others convenience.
=IF(Done@row = 1, TODAY())
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Here's some more information about the Smartsheet API: https://developers.smartsheet.com/
Did it work?
Andrée
Great! Thanks, I was able to get it to work. I had to create a separate date column because my initial date column titled "Completion Date" was used in schedule calculations. Thanks for the guidance on developing the formula. I'm learning more and more about developing formulas to automate my work and others.
Excellent!
Happy to help!
I searched the community and did not see a formula that calculated Quarter based on a Start and a Finish date while also accounting for cases where the year for the Start and Finish date differ. The formula below handles that. A few notes … It assumes that Finish is always >= Start. The entire formula is wrapped with…
i am not good with writing formulas within a sheet. I asked the AI tool in the sheet to help me write a formula and I am getting a Circular reference back. I'm trying to have it write the following formula for me. If the column "Tracking #" is not blank, change Column "Deployment Phase" to "Shipped" I have tried adding in…
I have a workflow that detects a row(date) that is changing its Fiscal Week Finish Date and send this row to other Sheet. Long story short: I collect delayed tasks in separate file & I tag reasons for delay for these tasks. It happens that plan are analyzed 2-3 hours and dates are being changed several times. I would like…