Formula for Past Due Status Value
What formula can I use that will return a Past Due status based on the following parameters:
- Start Date < TODAY and % Complete = 0
- % Complete > 0 and End Date < TODAY
I am using the following formula for statuses of Not Started, In Progress, and Completed but I can't figure out how to incorporate Past Due...
=IF([% Complete]@row = 0, "Not Started", IF(AND([% Complete]@row >= 0.01, [% Complete]@row < 1), "In Progress", IF([% Complete]@row = 1, "Complete")))
Best Answer
-
Try this:
=IF([% Complete]@row = 0, IF([Start Date]@row < TODAY(), "Past Due", "Not Started"), IF([% Complete]@row = 1, "Complete", IF([End Date]@row < TODAY(), "Past Due", "In Progress")))
Answers
-
Try this:
=IF([% Complete]@row = 0, IF([Start Date]@row < TODAY(), "Past Due", "Not Started"), IF([% Complete]@row = 1, "Complete", IF([End Date]@row < TODAY(), "Past Due", "In Progress")))
-
@Paul Newcome, that worked! You are a Smartsheet God. Thank you!
-
Happy to help. 👍️
-
@Paul Newcome , based on the status column, I'd like to create a Health indicator...
Not Started = Blue
In Progress = Yellow
Past Due = Red
Complete = Green
Any thoughts?
-
You would use the same syntax as above for a nested IF statement.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 439 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 67 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!