I have a column called "Done" and i want the child cells to have checkboxes and the parents to have the % of the project done( some rows dont have child cells and are stand alone). I have a formula that works:
=IF(COUNT(CHILDREN([Primary Column]@row)) >= 1, COUNTIF(CHILDREN(), true) / COUNT(CHILDREN()) * 100 + "%")
but I cant apply this to the column( the checkboxes no longer check), is there a way to set this up? I don't want to be copy and pasting it for every new row added to the sheet.
In addition to setting that up I am trying to base the harvy ball in my " completion" column off of the % i would get from the parent cells in "Done"
Hopefully there is an answer out there!!!!