Automate Status based on Dates
Hello Everyone,
I am looking for help with an IF formula to update the Status column based on 3 different dates:
Content Draft Date
Content Approval Date
Delivery Date
Basically, I would like for the Status column to change to "In Progress" when the contact draft date is reached and remain as "In Progress" until Content Approval Date is reached, which will then change to "Approved" and remain as approved until the Delivery Date is reached, which it should then change to "Completed" and remain as "Completed".
Here is the formula I wrote:
=IF(AND([Content Draft Date]22 >= TODAY(), "In Progress", IF(AND([Content Approval Date]22 >= TODAY(), "Approved", IF(AND([Delivery Date]22 >= TODAY(), "Completed"))))))
Any help will be much appreciated!
Thanks
Best Answer
-
Try something like this...
IF(TODAY() >= [Delivery Date]@row, "Completed", IF(TODAY() >= [Content Approval Date]@row, "Approved", "In Progress"))
Answers
-
Try something like this...
IF(TODAY() >= [Delivery Date]@row, "Completed", IF(TODAY() >= [Content Approval Date]@row, "Approved", "In Progress"))
-
Thank you Paul, this is very helpful!!!
-
Happy to help! 👍️
-
Hello, I am trying the same but with Not Started, In Progress and Complete based on my dates. I am having trouble as this is my first formula writing in Smartsheets. Any help would be appreciated. Thank you.
-
@Scott Nuss What are your exact requirements?
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!