IF OR RANGE CONDITIONING

T

turkyildiz

If I use

=IF(OR(B21>240,D21>118,C21>96),"NO YOU ARE OK","FOR SURE")

it does it for one row if I use


=IF(OR(B21:B43>240,D21:D43>118,C21:C43>96,E21:E43>4000),"FOR SURE","NO
YOU ARE OK")

does not do anything at all, any advise to get this formula to react
if i typle 244 in column b32 to turn to for sure

Regards
 
J

JE McGimpsey

One way:

=IF(COUNTIF(B21:B43,">240") + COUNTIF(C21:C43,">96") +
COUNTIF(D21:D43,">118") + COUNTIF(E21:E43,">4000"), "FOR SURE","NO YOU
ARE OK")
 

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