Sorry If this is a repeat but the first post seemed to have disappeared.
My Goal is to have the Top row #1 Where that checkbox is to say what the total of completed of all the subtaks below. For example the Level 4 is showing 100% completed so the Top row should show 25% completed. But Not sure how to accomplish this?
Each level is calculating the tasks below it with this formula
=ROUND(IF(COUNTIF(CHILDREN(), 1) / COUNT(CHILDREN()) > 0, COUNTIF(CHILDREN(), 1) / COUNT(CHILDREN()), 0) * 100, 0) + "%"
Is this possible? to have the Overall Total show the Percentage overall? or do I need to change my approach to get this to calculate properly?