Formula for RYG status based on Drop down column marked: Complete, In Progress & Not Started
Hi there! I am looking for help creating an IF formula to produce the RYG based on another column that has a dropdown (Complete, In Progress & Not Started).
This is what I had:
=IF([email protected] = "Completed", "Green", IF(AND([email protected] = "In Progress", "Yellow", IF(AND([email protected] = "Not Started"), "Red"))))
0
Best Answer
-
Hi @M.Q.
Try it without the AND statement.
=IF([email protected] = "Not Started", "Red", IF([email protected] = "Completed", "Green", IF([email protected] = "In Progress", "Yellow", "")))
1
Answers
-
Hi @M.Q.
Try it without the AND statement.
=IF([email protected] = "Not Started", "Red", IF([email protected] = "Completed", "Green", IF([email protected] = "In Progress", "Yellow", "")))
1