Nesting If and And

  • Thread starter Thread starter terri
  • Start date Start date
T

terri

I'm trying to nest this:
IF(and(N3="Yes",and(O3="Yes",and(P3="Yes",and(Q3="NA","Yes","No")

but it doesn't work :( help please
 
Hi

Look at this:

=IF(AND(N3="Yes",O3="Yes",P3="Yes",Q3="NA"),"Yes","No")

Regards,
Per
 
Try one of these

=IF(AND(COUNTIF(N3:P3,"yes")=3,Q3="NA"),"yes","No")
or
=IF(AND(INDEX(N3:P3="yes",),Q3="NA"),"Yes","No")
 
WOW! all three examples work! You are all amazing!!!
thank you sooooo much :) :)
 

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

Back
Top