So I am working on a formula to help me determine the health of a project based on the RYG balls and I want the project to count not only the children but all of the RGB balls of the children.
So currently I am working on the formula for the top gray box.
The formula I am currently using is the following: =IF(((COUNTIFS(CHILDREN(), "Green") * 2) + COUNTIFS(CHILDREN(), "Yellow")) / (COUNT(CHILDREN()) * 2) <= 0.49, "Red", IF(((COUNTIFS(CHILDREN(), "Green") * 2) + COUNTIFS(CHILDREN(), "Yellow")) / (COUNT(CHILDREN()) * 2) <= 0.74, "Yellow", "Green"))
So I want the gray box to count all 10 "balls" and it currently is counting only 4 balls. So I want a way to tell it to count both the children and the children's children if possible. as you can see the current status is green and I feel like it should be red if it counted all 10 vs only the 4 children.
I hope this amazingly smart community can help me!