Count if number between two numbers in Excel?

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

Guest

I am trying to count how many times a number >=94 and <95 occurs in a column?
I can get it to count how many above a number or below but not in between.
 
one way:

=COUNTIF(A:A,">=94") - COUNTIF(A:A,">=95")


another:

=SUMPRODUCT(--(INT(A1:A1000)=94))
 

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

Back
Top