View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Pete_UK Pete_UK is offline
external usenet poster
 
Posts: 8,856
Default How to count a range of number to a given parameter or criteria.

Although COUNTIF only lets you use one criteria, you could have
something like this:

=COUNTIF(A1:A20,"1")-COUNTIF(A1:A20,"=2")

to get a count of the numbers above 1 and less than or equal to 2.
Vary the 1 and 2 for other ranges.

Hope this helps.

Pete

On Oct 26, 8:37 pm, Saul wrote:
Hi,

I have a range (A1:A20) that contains numbers and I want to know how many
fall between 0 and 1, 1 and 2, 3 and 4, and greater than 4. I did the countif
function but it does not let me use more than 1 criteria. Can someone let me
know.

--
Thank you.