Mutiple "or"s and "and"s in an "IF" statement

T

tcek

i would like to say in excel format

If cell reference A15 is equal to "A" or "B" and cell reference A17 is equal
to "1", "2" , "3" or "4" then "Statement" or else "A different statement"

thanks in return
 
J

John C

If cell reference A15 is equal to "A" or "B" and cell reference A17 is equal
to "1", "2" , "3" or "4" then "Statement" or else "A different statement"

=IF(AND(OR(A15="A",A15="B"),OR(A17="1",A17="2",A17="3",A17="4")),"Statement","A different statement")

Hope this helps.

Note: I put the numbers in quotes, like you had them, but if these are
actual numbers, not text, then remove the quotes.
 
M

Mike H

Try,

=IF(AND(OR(A15="A",A15="B"),OR(A17=1,A17=2,A17=3)),"Statement A","Statement
B")

Mike
 
T

Tom Hutchins

Try

=IF(AND(OR(A15={"A","B"}),OR(A17={1,2,3,4})),"Statement","Statement 2")

Hope this helps,

Hutch
 

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

Similar Threads


Top