Red, Yellow, Green Formula
I am trying to get the Red, Yellow, Green dot formula to work with the information below.
Red = If [submitted date] is in the past and [Assigned Engineer] is blank
Yellow = If [Assigned Engineer] is not blank
Green = If [Completed] is checked
Best Answer
-
Try This...
=IF(Completed@row = 1, "Green", IF(AND([Submitted Date]@row < TODAY(), ISBLANK([Assigned Engineer]@row)), "Red", IF(NOT(ISBLANK([Assigned Engineer]@row)), "Yellow")))
Note: If the Date is today or in the future and no Engineer is assigned the cell will be blank.
Answers
-
Try This...
=IF(Completed@row = 1, "Green", IF(AND([Submitted Date]@row < TODAY(), ISBLANK([Assigned Engineer]@row)), "Red", IF(NOT(ISBLANK([Assigned Engineer]@row)), "Yellow")))
Note: If the Date is today or in the future and no Engineer is assigned the cell will be blank.
-
That worked. Thank you for your help.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!