I currently have something similar like this setup for a number of projects, for each of the deliverables, I use the following formula:
=IF(Status4 = "Complete", "Blue", IF(Status4 = "At Risk", "Yellow", IF(Status4 = "On Hold", "Yellow", IF(ISBLANK(Finish4), "", IF(Finish4 - TODAY() < 0, "Red", IF(Finish4 - TODAY() < 3, "Yellow", "Green"))))))
For Project and initiative level, I use the following:
=IF(OR(COUNTIF(CHILDREN(), "Red") > 0, COUNTIF(CHILDREN(), "Yellow") > 0), "Yellow", IF(COUNTIF(CHILDREN(), "Green") > 0, "Green", ""))
There are a number of things that are not working with the current setup that I would need help with:
- Project and Initiative level does not react to a red health indicator from one of the children (not working)
- Finish in the past should always overwrite yellow status (not working)
Any other good suggestions are greatly welcome. Thank you!