date range formula
Hi dear community,
I need a formula to return the values "Process" and "At Risk" when a certain date is reached.
I have a "Start date" column. I need to notify the assignee of the status for each task (all in separate columns). When we are 145-91 days from the start date, it should return "Process". When we are 90-0 days from the start date it should return "At Risk".
I tried the following mini formulas, which work. But I don't know how to combine them into one formula.
=IF([Start Date]@row - 91 > TODAY(), "At Risk")
=IF([Start Date]@row - 145 > TODAY(), "Process")
Any help would be greatly appreciated!
Best Answer
-
Try this:
=IF([Start Date]@row>= TODAY(-90), "At Risk", IF([Start Date]@row>= TODAY(-145), "Process"))
Answers
-
Try this:
=IF([Start Date]@row>= TODAY(-90), "At Risk", IF([Start Date]@row>= TODAY(-145), "Process"))
-
Thank you!
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.7K Get Help
- 406 Global Discussions
- 218 Industry Talk
- 456 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 297 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!