Formula for Status for Upcoming vs In Future
I am trying to auto update the status column based on the Due Date and Date Completed Columns.
=IF([Due Date]@row = "Not Enrolled Yet", "Not Required", IF(ISDATE([Date Completed]@row), "Complete", IF(AND([Due Date]@row < TODAY(), [Date Completed]@row = ""), "Overdue", IF(AND([Due Date]@row > TODAY(), [Date Completed]@row = ""), "In Future"))))
Its working good, but what I need is to say anything in the next 90 days, shows status as Upcoming, anything after 90 days so in future.
Answers
-
IF(AND([Due Date]@row > TODAY(90), [Date Completed]@row = ""), "In Future", IF(AND([Due Date]@row < = TODAY(90), [Date Completed]@row = ""), "Upcoming"
Michelle Choate
michelle.choate@outlook.com
Always happy to walk through any project you need help with!
-
You can actually get rid of the AND statements since you already specified what to do if the Date Completed is a date. Give this a try (also included the "Upcoming" requirement):
=IF([Due Date]@row = "Not Enrolled Yet", "Not Required", IF(ISDATE([Date Completed]@row), "Complete", IF([Due Date]@row < TODAY(), "Overdue", IF([Due Date]@row > TODAY(90), "Upcoming", IF([Due Date]@row > TODAY(), "In Future")))))
-
Thank you so much. Now last question, I think.
If Due date row is BLANK, status should show as No Date
-
You would just start things off like this:
=IF([Due Date]@row = "", "No Date", IF([Due Date]@row = "Not Enrolled Yet", …………………………………………
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
- 142 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!