Hi there,
I've been combing through the posts and not finding exactly what I'm looking for...so reaching out to the experts for some help. Below is what I was hoping to accomplish.
Any help would be much appreciated.
Thanks,
If Status is Complete then ball color should be Green
If Status is Not Started or In Progress and End Date is greater than Today then the ball color should be Green
If Status is Not Started or In Progress and End Date is within the next 14 days then the ball color should be Yellow
If Status is Not Started or In Progress and End Date is within the next 5 days then the ball color should be Red and Status should change to At Risk – Coming Due (not sure if I need to have a separate formula on the Status column for the changing of the Status to work)
If Status is Not Started or In Progress and End Date is less than Today then the ball color should be Red and the Status should change to At Risk – Coming Due (not sure if I need to have a separate formula on the Status column for the changing of the Status to work)
=IF(Status@row = "Complete", "Green", IF(AND(Status@row = "In Progress", [Start Date]@row > TODAY(), [End Date]@row > TODAY()), "Green", IF(AND(Status@row = "In Progress", [Start Date]@row < TODAY(), [End Date]@row > TODAY()), "Green", IF(AND(Status@row = "In Progress", [Start Date]@row < TODAY(), [End Date]@row < TODAY(14)), "Yellow", IF(AND(Status@row = "In Progress", [Start Date]@row < TODAY(), [End Date]@row < TODAY(5)), "Red", IF(AND(Status@row = "Not Started", [Start Date]@row > TODAY(), [End Date]@row > TODAY()), "Green", IF(AND(Status@row = "Not Started", [Start Date]@row < TODAY(), [End Date]@row > TODAY()), "Green", IF(AND(Status@row = "Not Started", [Start Date]@row < TODAY(), [End Date]@row < TODAY(14)), "Yellow", IF(AND(Status@row = "Not Started", [Start Date]@row < TODAY(), [End Date]@row < TODAY(5)), "Red")))))))))