> How do I do a set up the fcn to count all cells in a range that are >0% and
> <25%?
Hi John,
Try using this: SUMPRODUCT((cellrange>0)*1,(cellrange<0.25)*1)
Regards,
-AG
=COUNTIF(A:A,">0")-COUNTIF(A1:A20,">=.25")

Signature
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
> How do I do a set up the fcn to count all cells in a range that are >0%
> and
> <25%?
Bob Phillips - 24 May 2008 01:03 GMT
That was meant to be
=COUNTIF(A:A,">0")-COUNTIF(A:A,">=.25")

Signature
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
> =COUNTIF(A:A,">0")-COUNTIF(A1:A20,">=.25")
>
>> How do I do a set up the fcn to count all cells in a range that are >0%
>> and
>> <25%?
=SUM(COUNTIF(A:A,{">0",">=0.25"})*{1,-1})
> How do I do a set up the fcn to count all cells in a range that are >0% and
> <25%?