Excel Help (CountIF)

Soldato
Joined
26 Aug 2005
Posts
6,901
Location
London
Hi guys,

I need a condition that counts all figures that is in the range of 1-10. I've got the following but it doesn't work:

=COUNT(D7: D9,">0",",=10")

Any ideas?
 
COUNT counts all numeric values.

You need to use a combination of it and COUNTIF, something like the below should do it.

Count all numeric values - those greater than 10 - those less than or equal to 1.

Code:
=SUM(COUNT(A1:A7) -COUNTIF(A1:A7,">10") -COUNTIF(A1:A7, "<=0"))
 
Back
Top Bottom