If Formula

G

Guest

I am trying to figure out the if formula. I need a formula that will look at
cells d10 through ae10, and if any are 20%< than cell AF10 return a true and
if no cell is then false.
 
D

Dave Peterson

=countif(d10:ae10,"<"&0.2*af10)

Peco said:
I am trying to figure out the if formula. I need a formula that will look at
cells d10 through ae10, and if any are 20%< than cell AF10 return a true and
if no cell is then false.
 
P

pinkfloydfan

I am trying to figure out the if formula. I need a formula that will look at
cells d10 through ae10, and if any are 20%< than cell AF10 return a true and
if no cell is then false.

You can use the following:

=IF((D10:AE10)<AF10*20%,1,0)

BUT, you must enter it as an array, i.e. with ctrl+shift+enter
 
D

Dave Peterson

=countif(d10:ae10,"<"&0.2*af10)
displays the count.

=(countif(d10:ae10,"<"&0.2*af10))>0
with return true or false
 

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