Needing Formula

T

Tara

I need to do a count if formula all I want it to do is
look up and count the numbers in a row that are >=100 but
<=800 for some reason it will not do this can someone help
me please.
 
D

Dan E

Not elegant but it works
=COUNTIF(A1:A12,">=100")-COUNTIF(A1:A12,">800")
counts all greater than or equal to 100 and subtracts those greater than 800

Dan E
 
C

CLR

=COUNT(A10:H10)-COUNTIF(A10:H10,">800")-COUNTIF(A10:H10,"<100")

Vaya con Dios,
Chuck, CABGx3
 
H

Harlan Grove

Thomas said:
=SUM(COUNTIF(A1:A100,{">99","<801","<>"})*{1,1,-1}) ....

The OP doesn't state that all numbers would be integers, so >99 IS NOT THE
SAME AS >=100. Ditto for <801.
 

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