I'm trying to get a RYGB formula to work. I'm thinking my order is wrong but I'm not sure. I had it working for RYGG but was asked to show Completed Tasks in a different color. I would like to change this so that Blue = Complete and N/A and Not Started are blank.
Formula that is currently working for RYGG:
=IF(Status@row = "On Hold", "Yellow", IF(OR(AND(TODAY() >= [End Date]@row, Status@row <> "Complete"), Status@row = "At Risk"), "Red", IF(OR(Status@row = "Complete", AND(Status@row = "On Track/In Progress", [End Date]@row >= TODAY())), "Green", IF(OR(Status@row = "N/A", AND(OR(ISBLANK(Status@row), Status@row = "Not Started"), [End Date]@row > TODAY())), "Gray"))))
Criteria:
RYGG = Red
1) If End Date is in the past and Status is not “Complete” or 2) if Status is “At Risk” or 3) if End Date is in the past and Status is blank
RYGG = Yellow
If Status is “On Hold”
RYGG = Green
1) If Status is “Complete” or 2) if End Date is in the future and Status is “In Progress”
RYGG = Gray
1) If End Date is in the future and Status is “Not Started” or 2) if Status is “N/A” or 3) if End Date is in the future and Status is blank
Any assistance would be greatly appreciated.
Thanks!