Countif / and

  • Thread starter Thread starter Maxwell
  • Start date Start date
M

Maxwell

Hello,

Here is my problem...

I need a formula to do the following...
=Countif a range (A1:Z1) that is greater than zero and
less than 100. Basically I need to count everything
between 0-100. If the number is either 0 or 100, then it
will not count it.

Please help?
 
You need a compound formula... Here it is:

=COUNT(A1:Z1)-COUNTIF(A1:Z1,"<=0")-COUNTIF(A1:Z1,">=100")
 
Back
Top