How do I get countifs to select all non-blank cells? I have two other criteria, so using counta alone is not an option.
countifs
counta
Using istext<
istext<
I find that the best way to do this is to use SUMPRODUCT instead:
SUMPRODUCT
=SUMPRODUCT((A1:A10<>"")*1)
It's also pretty great if you want to throw in more criteria:
=SUMPRODUCT((A1:A10<>"")*(A1:A10>$B$1)*(A1:A10<=$B$2))