Tom --
There was a similar question posted at this site very recently. By doing a search with CONTROL+F on COUNTIF, for example, you could have discovered the answer, whic is:
=COUNTIF(A1:A20,">10")-COUNTIF(A1:A20,">=15")
This will give an exclusive between count.
If you place 10 in say B1 and 15 in B2, you can rewrite the formula as:
=COUNTIF(A1:A20,">"&B1)-COUNTIF(A1:A20,">="&B2)
Aladin
==========
Try this array formula SUM((A1:A20<=14)*(A1:A20>=10)) you must hit ctrl, shift, and enter to use this
Paul --
There is no need for using an expensive formula in this case.
Regards.
Aladin
=======
Thanks Aladin! (wondering where you hide your magic lamp ...)
Being a newbie to both Excel and this MB I have learned a lot.
I was sooo stuck on the syntax of trying to form the conjunction for the two inequalities that I could not break out of my box. It seems as if it would be possible to configure the conjunction of two inequalities with the countif using the 'and' worksheet function but maybe not. Your solution makes sense and is easy to understand.
Now to figure out what B1 and "&" symbol denotes in your response. (scratching head ...)
Thanks for the tip on the search function also.
Thanks again,
Tom_F
Th
Thanks for the tip, posted mine before I seen yours