Hello - we are having problems adjusting a formula to include additional details. The formula is being used on a sheet for a project checklist.
The parent formula shows the overall status of child tasks - if they are all "Completed" then the formula should say "Completed", if they all say "Not Started" then the formula says "Not Started", otherwise it says "In Progress".
I want to change this formula so that if a cell says "Cancelled" it counts towards "Completed" - if there are 5 child rows and 4 say "Completed" and 1 says "Cancelled" the formula should say "Completed". I've tried adding it in to the below but everything I do returns an error.
Here is the current formula:
=IF(COUNTIFS(CHILDREN(), @cell = "Completed") = COUNTIFS(CHILDREN(), OR(@cell = "", @cell <>"" )), "Completed", IF(COUNTIFS(CHILDREN(), @cell = "Not Started") = COUNT(CHILDREN()), "Not Started", "In Progress"))
Thanks!