I am creating an simple method to help us determine project progress to report back to our customers. The idea is to group tasks into phases and then classify each project as being in a specific phase depending on which tasks have been complete. Once all tasks in a phase have been completed, the sheet will report back that the project has advanced to the next phase.
Currently, each task on my sheet is in its own row and includes a checkbox cell to indicate task completion when checked. I have assigned each task a Phase (I, II, III, IV, or V) in a separate column. To simplify my request, I will assume each phase has 3 tasks:
Phase I: Task 1-3; Phase II: Tasks 4-6; Phase III: Tasks 7-9; Phase IV: Tasks 10-12; Phase V Tasks 13-15. I need the equations to have the following logic
- If Tasks 1-3 are not all complete then return "Phase I"
- If Tasks 4-6 are not all complete then return "Phase II"
- If Tasks 7-9 are not all complete then return "Phase III"
- If Tasks 10-12 are not all complete then return "Phase IV"
- If Tasks 12-15 are not all complete then return "Phase V"
- If all Tasks are complete then return "Ready for Contract Signature" or some other value indicating that
It should also be noted that if the tasks for a later Phase are all complete but not the current one, then the current phase should be displayed. For example, Phase II tasks 4-6 are complete but only tasks 1 and 2 of Phase I are complete. The status would still appear as Phase I despite the logic of Phase II's completion returning Phase III.