I need help with a formula.
I have 2 columns I need to test true for. I would like that column to indicate Red, Yellow, or Green in the "Health Column".
I need the "SCAA Stage 1 Completed Date" column and the "Content" columns to work together. One is a list and one is a date.
I would like logically if SCAA column is a date AND Content Column contains ("InfoSec", "InfoSec (Custom PCI)", or "Custom") THEN = GREEN.
If one of these is not true then YELLOW (meaning SCAA is not a date OR Content is any other value).
If both are NOT TRUE then = RED.
I have this working:
=IF([SCAA Stage 1 Completed Date]11 = "⌛", "Yellow", IF(Content11 = "L.PCI / D.PII", "Yellow", IF(Content11 = "Custom", "Yellow", IF(Content11 = "L.PCI / L.PII", "Yellow", IF(Content11 = "L.PCI", "Yellow", "Green")))))
Please help!