Hello!
I'm hoping someone will be able to help! I'm trying to determine the total percentage complete of children under a parent category. Criteria for percentage complete using the status balls would be:
Green = 1 (deliverable met)
Yellow = .5 (deliverable partially met)
Null/Blank field/no status ball selected = 0 (deliverable not met, should be included in percentage calculation)
Grey = N/A (item will not be delivered, not applicable, should not be calculated in percentage)
Then I'm hoping to have overall percentage complete for delivery column based on percentages of parent categories calculated above.
This is what has been attempted so far but didn't work:
=AVERAGEIF(CHILDREN([Data Cut 2 Status]@row)), IF([Data Cut 2 Status]@row = "Green", 1, IF([Data Cut 2 Status]@row = "Yellow", .5, IF([Data Cut 2 Status]@row = "Blank", 0)))
=AVERAGEIF(CHILDREN([Data Cut 3 Status]@row)), IF([Data Cut 3 Status]@row = "Green", 1, IF([Data Cut 3 Status]@row = "Yellow", .5, IF([Data Cut 3 Status]@row = "Red", 0, IF([Data Cut 3 Status]@row = "Gray", 0)))))
I appreciate
any help!!
Thank you!