ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   Mutiple "or"s and "and"s in an "IF" statement (https://www.excelbanter.com/excel-worksheet-functions/206282-mutiple-s-s-if-statement.html)

tcek

Mutiple "or"s and "and"s in an "IF" statement
 
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

John C[_2_]

Mutiple "or"s and "and"s in an "IF" statement
 
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.
--
John C


"tcek" wrote:

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


Mike H

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

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

Mike

"tcek" wrote:

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


Tom Hutchins

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

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

Hope this helps,

Hutch

"tcek" wrote:

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



All times are GMT +1. The time now is 06:36 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com