Hello, I've been trying different options to use the IF/AND formula to calculate the RYGG ball symbols for the child health of multiple tasks and have been unsuccessful. First I tried using the Planned End Date and % Complete columns:
=IF(Status@row = "Complete", "Blue", IF(Status@row = "Not Started", "Gray", IF(AND(Status@row = "In Progress", [Planned End Date]@row > TODAY(15)), "Green", "Ideal"), IF(AND(Status@row = "In Progress", [Planned End Date]@row < TODAY(5), "Yellow", "Review"), IF(AND(Status@row = "In Progress",([Planned End Date]@row < TODAY(), "Red", "Review")))))
and second I tried using the Status and Planned End Date columns:
=IF(Status@row = "Complete", "Blue", IF(Status@row = "Not Started", "Gray", IF(AND([Planned End Date]@row > TODAY(15), [% Complete]@row > 0.25), "Green", "Yellow", IF(AND([Planned End Date]@row < TODAY(5), [% Complete]@row < 0.65), "Yellow", "Green", IF(AND([Planned End Date]@row < TODAY(), [% Complete]@row < 0.9), "Red", "Yellow")))))
Any help is much appreciated!