Countif Criteria

W

Wayne K

I want to specify a range of numbers as the criteria. Example: How many entries in my database fall between 5 and 20
 
F

Frank Kabel

Hi
if you want to check column A try
=COUNTIF(A1:A1000,"<20")-COUNTIF(A1:A1000,"<=5")

or
=SUMPRODUCT((A1:A1000>5)*(A1:A1000<20))
 
P

Peo Sjoblom

One way

=COUNTIF(Range,">=5")-(COUNTIF(Range,">20")

--

Regards,

Peo Sjoblom

Wayne K said:
I want to specify a range of numbers as the criteria. Example: How many
entries in my database fall between 5 and 20
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top