I'm struggling to complete a formula to do the following:
If Status is Complete, mark the health green.
If Status is Not Started or In Progress and End Date is 10 days or greater, mark health green
If Status is In Progress OR Not Started and End Date is within 5 days, mark the health yellow
If Status is Not Started OR In Progress and End Date is past due, mark the health red.
I started the formula below but I'm receiving an "Incorrect argument set" message:
=IF(Status@row = "Complete", "Green", IF(AND(Status@row = "In Progress", [End Date]@row < TODAY()), "Red", IF(AND(Status@row = "Not Started", [End Date]@row < TODAY()), "Red", IF(AND(Status@row = "Not Started", [End Date]@row < TODAY(5)), "Yellow")))))