Hello,
I have a sheet where we are tracking progress on certain goals. We have some children under the main focus areas (parent rows). Each children row has a harvey ball to show progress. I created a helper row to assign a number to each type of harvey ball. Then in the parent row, I want to take an average of the numbers in the helper for each of the children rows and assign an overall harvey ball. However, it is not including the "full" number in the average.
Here is a snip below. When the harvey ball is full, the helper row returns the number 5. Then the colored parent row takes an average of those below it. So the helper row should be returning a 3, but it is returning a 1.
How can I get the average formula (=IFERROR(ROUND(SUM(CHILDREN()) / (COUNTIF(CHILDREN(), <>0))), " ")) that I have in the parent helper cell to count for the Full/5?
The formula in the helper for the children is =IF([% Complete]@row = "Empty", "", IF([% Complete]@row = "Quarter", 1, IF([% Complete]@row = "Half", 2, IF([% Complete]@row = "Three Quarter", 4, IF([% Complete]@row = "Full", "5"))))) - which seems to be working.
Thank you,
Ashleigh