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!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.9K Get Help
- 441 Global Discussions
- 153 Industry Talk
- 501 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 79 Community Job Board
- 511 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!