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
-
Happy to help. 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 140 Industry Talk
- 472 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!