I am using a formula to change the color of my symbol based on whether another column has certain text.
- If the Status Option column contains the text "OK:" it should trigger the status summary column to show a Green symbol.
- If the Status Option column contains the text "Needs Attention:" it should trigger the status summary column to show a Red symbol.
- If the Status Option column contains the text "In Progress:" it should trigger the status summary column to show a Yellow symbol.
=IF(CONTAINS("Needs Attention:", [Status Option]:[Status Option]), "Red", IF(CONTAINS("OK:", [Status Option]:[Status Option]), "Green", IF(CONTAINS("In Progress:", [Status Option]:[Status Option]), "Yellow")))
What is wrong with my formula?