Hello!
I am looking to create a formula for the RYG column that would work like this:
If Status column is "Overdue", then it shows "Yellow"
If Status column is "Complete", then it shows "Green"
If Status column is "In Progress", then it shows "Green"
If Status column is "Not Started", then it shows "Grey"
If At Risk column is flagged, then it shows "Red"
I have been trying this, but the At Risk flag doesn't trigger Red.
=IF(Status@row = "Overdue", "Yellow", IF(Status@row = "Complete", "Green", IF(Status@row = "In Progress", "Green", IF(Status@row = "Not Started", "Gray", IF([At Risk]@row = 1, "Red")))))
Any ideas?