My sheet is structured as a sort of tiered task checklist. There are several Parent rows with varying numbers of Child rows. There are two columns that are involved with my issue: the first is a "Status" column, and the second is a sort of "True/False" binary check labelled as "% Complete."
There are no formulas in the "Status" column and is formatted as Text/Number.
There are two formulas I'm trying to implement in the "% Complete" column that is also formatted as Text/Number (these formulas are being input into the individual row cells):
- For the Parent rows: =(COUNTIF([% Complete]2:[% Complete]37, 1) / COUNT([% Complete]2:[% Complete]37))
- For all the Children: =IF(Status[row#] = "Complete", 1, IF(Status[row#] = "N/A", 1, 0))
Right after entering the multiple variations of the formulas, everything works fine. But as soon as I save it and go to another sheet, when I return to this sheet, all of the formulas are gone save for the top Parent row.
One possibility I can think of as far as issues is that there are a total of 654 rows being utilized that could be causing a memory threshold issue. Other than that, I cannot for the life of me figure out why this is happening. Am I doing something wrong? Is there a better way of going about this?