Phoning a friend.. I am repurposing a sheet to be used for tracking recurring tasks. There may be activities either weekly or month is not required, so I want to mark the activity (parent) as “N/A” and not “Complete”. I have been able to adjust formula for everything except when all child status is are “N/A”. I believe I need to add another COUNTIF to the first statement that does a count of all Children that are “N/A” then Parent is “N/A”.
Test Status – drop down for owner to update
Test Status – Formulaic is a helper column that contains the logic. It is used in a couple places on the sheet.
Parent rows (in blue) for 1 and 3 are correct. Parent row 2 should be "N/A"
=IF([Step Number]@row = 0, IF(COUNTIF(CHILDREN([Task Status]@row), "") + COUNTIF(CHILDREN([Task Status]@row), "Not Started") = COUNT(CHILDREN(Week@row)), "Not Started",
IF(COUNTIF(CHILDREN([Task Status]@row), "Complete") = COUNT(CHILDREN(Week@row)), "Complete", IF(COUNTIF(CHILDREN([Task Status]@row), "Error") > 0, "Error",
IF(COUNTIF(CHILDREN([Task Status]@row), "In Progress") > 0, "In Progress",
IF(COUNTIF(CHILDREN([Task Status]@row), "Not Started") > 0, "In Progress", "Complete"))))),
IF([Task Status]@row = "", "Not Started", [Task Status]@row))