Need help finishing formula for status

I want to Turn the status to Yellow if [Done?] is unchecked and the field [Server must be 100% Cutover to New Box by:] is less than 13 days away from today if not then green.
So this works:
=IF(AND([Done?]@row = 0, [Server must be 100% Cutover to New Box by:]@row - TODAY() < 13), "Yellow", "Green")
BUT, I want to add to the working formula that works above what is below:
if the [Done?] field is unchecked and if Today is greater than [Server must be 100% Cutover to New Box by:] field then return Red. In other words if the date the server cutover must be completed is in the past then Red.
For some reason I just can't make this last part work.
Assistance would be appreciated. Thank you.
Best Answer
-
HI @Edward Spencer,
Try this: =IF(AND(Done?@row = 0, [Server must be 100% Cutover to New Box by:]@row < TODAY()), "Red", IF(AND(Done?@row = 0, [Server must be 100% Cutover to New Box by:]@row - TODAY() < 13), "Yellow", "Green"))
Hope that helps 😊
Matthew
Answers
-
HI @Edward Spencer,
Try this: =IF(AND(Done?@row = 0, [Server must be 100% Cutover to New Box by:]@row < TODAY()), "Red", IF(AND(Done?@row = 0, [Server must be 100% Cutover to New Box by:]@row - TODAY() < 13), "Yellow", "Green"))
Hope that helps 😊
Matthew
-
Thank you, that worked perfectly.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.7K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 509 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!