Good Morning,
I am trying to add health symbols that will tell me the overall health of my project as well as the individual phases withing said project. Below is currently what I have at my children level for health symbol formula.
Children Formula for Health Symbol:
=IF(COUNT(CHILDREN(Tasks@row)) = 0, IF([Ticket_Status]@row = "Complete", "Green", IF([Ticket_Status]@row = "Pending", "Blue", IF(OR([Ticket_Status]@row = "Not Started", [End Date]@row < TODAY()), "Red", IF([End Date]@row <= TODAY(7), "Yellow", IF([Ticket_Status]@row = "In Progress", "Green", "Yellow"))))), IF(COUNTIFS(CHILDREN(), "Red") > 0, "Red", IF(COUNTIFS(CHILDREN(), "Yellow") > 0, "Yellow", IF(COUNTIFS(CHILDREN(), "Blue") > 0, "Blue", "Green"))))
I am trying to write formula or find best way to provide overall status per phase as well as overall status for the entire project. Any assistance would be greatly appreciated.
Basically where the red X's are located.