Hello! I'm looking for help to perform the following logic for Parent rows ONLY:
- If the status of any child row is In Progress, then set the parent row status to In Progress.
- If the status of ALL child rows is Complete, then set the parent row status to Complete
- If the status of ALL child rows is Not Started or Blank, then leave parent row status blank
This is what I started to test out two of the scenarios, but I'm receiving "UNPARSEABLE":
=IF(OR(Status2="In Progress", Status3="In Progress"), "In Progress"), IF(AND(Status2 = "Complete", Status3 = "Complete"), "Complete", "Not Started")