IF Function Due Date

I am attempting to create a "Current Status" column that is using the Harvey Balls (red, yellow, green and gray). I am wanting these to automatically change yellow when my "End Date" column is 90 days prior to todays date. If the "End Date" is 60 days before todays date, then I want it to change from yellow to green. If the "End Date" column is greater than todays date, I would like it be red and stay red until the until a date is entered in the "Submitted Date" column then change to gray.
=IF(ISDATE([Submitted Date]@row), "Gray", IF(TODAY() >= ([End Date]@row), 90, "Yellow", IF(TODAY() >= ([End Date]@row), 60, "Green", "Red"))))
Best Answer
-
Give this a go...
=IF([Submitted Date]@row <> "", "Gray", IF([End Date]@row< TODAY(), "Red", IF([End Date]@row<TODAY(60), "Yellow", "Green"))
Answers
-
Give this a go...
=IF([Submitted Date]@row <> "", "Gray", IF([End Date]@row< TODAY(), "Red", IF([End Date]@row<TODAY(60), "Yellow", "Green"))
-
Thank you Paul. It worked like a charm
-
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!