I am trying to make a basic countif function which is =COUNTIF(C2:BE2,"Yes")
into an ArrayFunction which is
=ArrayFormula(if(isblank(A2:A),"",countif(C:BE,"Yes")
But this function counts every single "Yes" in the range C:BE
.
How do I make it so it counts row by row and still is an array formula?
Meaning the cell with this function counts from C2:BE2 and the next one counts from C3:BE3
Also I can't use the sign function as it only works if the criteria has numbers in it which the other posts in this forum have.