Hello
I am working on formula which give me following:
When I change Column B to (InProgress, Complete, or Risk) My Column A will change to (Red, Yellow, or Green).
Also
If there are any Red in the children, I want to show Red in the parent,
If there are no Red but there are Yellow in the children, Show Yellow in the parent.
If there are no Red or Yellow but there is Green in the children, Show Green in the parent.
Following drop down list are under Column B.
In Progress = Yellow
Complete = Green
Risk = Red
=IF(COUNTIF(CHILDREN(), "Red") > 0, "Red", IF(COUNT(CHILDREN()) = COUNTIF(CHILDREN(), "Green"), "Green", IF(COUNTIF(CHILDREN(), "Yellow") > 0, "Yellow", "")))
=IF(Status5 = "In Process", "Yellow", IF(Status5 = "Complete", "Green", IF(Status5 = "Risk", "Red", "")))
How do I combine both formula into one (symbol side).
Thanks
