Traffic light system by using data from drop down list in anther column
Hi All
I am trying to have an automated traffic light system dependant on the option chosen from my 'Status' column, I would like it to automatically choose the correct colour in the 'RAG Status' column, so Red for not started, Yellow in progress, Green for completed & grey for On Hold, this has really stumped me !
Best Answer
-
Please try this.
=IF(Status@row = "Not Started", "Red", IF(Status@row = "In Progress", "Yellow", IF(Status@row = "Complete", "Green", IF(Status@row = "On Hold", "Gray"))))
Answers
-
Please try this.
=IF(Status@row = "Not Started", "Red", IF(Status@row = "In Progress", "Yellow", IF(Status@row = "Complete", "Green", IF(Status@row = "On Hold", "Gray"))))
-
Thank you so much, that works perfectly, unfortunately formulas are not really my forte
-
Happy to help!😁