CountIF Function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is it possible to CountIf based on more than one criteri

This formula doesn't work...

=CountIf(A1:A10,">50","<100"

Thanks in advance
 
I don't think it can be done with COUNTIF. But you can use this formula
instead to count cells that meet your criteria.

=SUMPRODUCT((A1:A10>50)*(A1:A10<100))
 
Back
Top