I need to count all the rows in my sheet where any one of the three required columns are blank. I want a Sheet Summary formula that stores the result.
Psuedo-code: CountIf Status is blank OR if Owner is blank OR if Department is blank
For reasons I do not want to get into here ๐, I do NOT want to use a helper column for this task.
The only thing I can think to do is count rows where Status is blank PLUS rows where Owner is blank PLUS rows where Department is blank MINUS rows where Status/Owner/Department are blank times 2 MINUS rows where only Status/Owner are blank MINUS rows where only Status/Department are blank MINUS rows where only Owner/Department are blank.
Is there a better way I'm just not thinking of?