Thread: Countif Between
View Single Post
  #2   Report Post  
Jason Morin
 
Posts: n/a
Default

Here are 3 possible ways (inclusive):

=COUNTIF(D1:D100,"=3")-COUNTIF(D1:D100,"7")
=SUMPRODUCT(--(D1:D100=3),--(D1:D100<=7))
=COUNT(D1:D100)-SUM(COUNTIF(D1:D100,{"<3","7"}))

HTH
Jason
Atlanta, GA

-----Original Message-----
I need to count how many cells in column D have a value

in them between 7 and
3.
I cant find anything that lets me use between as

criteria and Countif only
allows me to have 1 criteria.

Any ideas?
.