I have a formula I need help with for the top level of my project checklist hierarchy.
- Overall Project Status - this is looking only at the highest level rows which are indicated by the helper column Hierarchy=0.
- The objective of the formula is as follows:
- If the Project Override field (in the Sheet Summary) is filled out = Display that value
- If the Project Override field is blank - then look at all parent rows where the following is true:
- "Default Filter" column is checked AND
- "Summary" column is not checked AND
- "Hierarchy" column = 0 THEN
- Look at "Status" column
- If all the rows say "Completed" > Project Status: Complete
- If all rows say "Not Started" > Project Status: Planning
- If any row says "In Progress" > Project Status: Active
This is the current formula we have that does not appear to be working:
Formula =IF([Project Status Override]# <> "", [Project Status Override]#, IF(AND(COUNTIFS([Tasks Needed]:[Tasks Needed], 0, Summary:Summary, 0, Hierarchy:Hierarchy, >0, Status:Status, OR(@cell="Completed", @cell="Cancelled")) = COUNTIFS([Tasks Needed]:[Tasks Needed], 0, Summary:Summary, 0, Hierarchy:Hierarchy, >0)), "Complete", IF(AND(COUNTIFS([Tasks Needed]:[Tasks Needed], 0, Summary:Summary, 0, Hierarchy:Hierarchy, >0, Status:Status, "Not Started") = COUNTIFS([Tasks Needed]:[Tasks Needed], 0, Summary:Summary, 0, Hierarchy:Hierarchy, >0)), "Planning", "Active")))