I'm learning how to set up the Health column. I have followed the various conversations and got to a point where most of the formula is working. I am stuck on an issue and would like help.
In the Status column we have the below series:
"Complete" or "In Progress" = "Green" | "On Hold" or "Forecast" = "Blue" | "Schedule" or "Not Started = "Yellow" | "Delayed" or "Cancelled" or if date is greater than TODAY = "Red"
The Health column is picking up an error in the Parent and Children rows. The other rows are working well. The Parent/Children are identifying 100% Complete = "Green", blank date columns = blank Health, but it is missing all the others. I would like it to show the Parent/Children as the AVG or highest count overall of any Symbol (colour) under each section. I have added a screenshot and below is my formula:
=IF(OR(ISBLANK(Start@row), ISBLANK(Finish@row)), "", IF([% Complete]@row = 1, "Green", IF(Start@row < TODAY(), "Red", IF(COUNT(CHILDREN(Start@row), ISBLANK(@cell)), IF(Status@row = "Not Started", "Yellow", IF(Status@row = "In Progress", "Green", IF(Status@row = "Schedule", "Yellow", IF(Status@row = "Forecast", "Blue", IF(Status@row = "On Hold", "Blue", IF(Status@row = "Delayed", "Red", IF(Status@row = "Cancelled", "Red", IF(Status@row = "Complete", "Green"))))))))))))