formula

  • Thread starter Help with cell function
  • Start date
H

Help with cell function

=IF(AND(E14="y",G14<15),"y","Criteria not met")

The above formula worked...thanks Luke M. In addition to the above I also
have something else that needs to go in to cell h14

E G H
2 y 14 y

What is the formula if E2 = y and G2= 14 or less, I want H2 to = y (luke M)
What is the formula if E2 = n and G2= 30 or less, I want H2 to = y
What is the formula if E2 = y and G2= 15 or more, I want H2 to = n
What is the formula if E2 = n and G2= 31 or more, I want H2 to = n
 
E

Eduardo

Hi,
in H2 enter

=IF(AND(E2="Y",G2<=14),"Y",IF(AND(E2="N",G2<=30),"Y",IF(AND(E2="Y",G2>=15),"N",IF(AND(E2="N",G2>=31),"N"))))

if this helps please click yes, thanks
 

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