Is there a way to make certain project rows active or inactive, so the date or % complete doesn't get calculated into the parent row? I've found a ways to use formulas to achieve this, but was curious if there's a more simple way to do this.
I realize you can just delete the row if it's no longer needed. However there might be tasks/milestones that are deemed out-of-scope, but we don't necessarily want to delete. Just check off as "inactive", so we have a record of it.
Right now, this is how I'm accomplishing this.
1) Create a "Count" column and add the formula below for each child row: =COUNTIF(Active@row, 1)
2) Add the following formula below for the parent rows: =SUM(CHILDREN())
3) Add the following formula to the parent rows for the % completed: =SUM(CHILDREN()) / Count@row