I am trying to figure out a formula that will count each row in a range, that contains any cell that is not empty. For example
Item 1|Item 2|Item 3
Cat 1 X X X
Cat 2
Cat 3 X X X
And
Item 1|Item 2|Item 3
Cat 1 X
Cat 2
Cat 3 X
Should both return 2. I know I could use a helper column with COUNTIF(Row,"<>") then use COUNTIF(Column,">0"), but I'm trying to avoid doing that because it will create other issues. Is there a way to do what I want all in one formula?
