Color Coding Formula
Hey all,
Need some help with putting together a formula that will display color coding in a symbol column based on conditions being met in two other columns.
Under status there are the following options - Completed, In Progress, Not Started, On Hold. I'm trying to get the color coding to function as follows -
If Completed = color code health column as Green (will be using symbol colors)
If In Progress and the Estimated Launch Date is in the future from today's date then Green
If In Progress and the Estimated Launch Data is in the past then it should be Red
If On Hold then Yellow
If Not Started then Gray
Best Answer
-
You could do this with conditional formatting if you want without having to have the extra column or develop a formula
=IF(OR(Status@row = "Completed", AND(Status@row = "In Progress", [Estimated Launch Date]@row > TODAY())), "Green", IF(AND(Status@row = "In Progress", [Estimated Launch Date]@row < TODAY()), "Red", IF(Status@row = "On Hold", "Yellow", IF(Status@row = "Not Started", "Grey"))))
Answers
-
You could do this with conditional formatting if you want without having to have the extra column or develop a formula
=IF(OR(Status@row = "Completed", AND(Status@row = "In Progress", [Estimated Launch Date]@row > TODAY())), "Green", IF(AND(Status@row = "In Progress", [Estimated Launch Date]@row < TODAY()), "Red", IF(Status@row = "On Hold", "Yellow", IF(Status@row = "Not Started", "Grey"))))
-
Thank you! This worked perfectly.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!