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
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!