Countif between two values

D

Dave R.

If you want to use countif for this, you'll have to use something like;

=COUNTIF(A1:A10,">=95")-COUNTIF(A1:A10,">100")

Watch the > and >= signs of course to make sure they fit ur needs.
 
J

Jason Morin

Several ways:

=COUNTIF(A1:A10,">=95")-COUNTIF(A1:A10,">100")
=COUNT(A1:A10)-SUM(COUNTIF(A1:A10,{"<95",">100"}))
=SUM(COUNTIF(A1:A10,{">=95",">100"})*{1,-1})
=SUMPRODUCT(--(A1:A10>=95),--(A1:A10<=100))

HTH
Jason
Atlanta, GA
 

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