View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
John C[_2_] John C[_2_] is offline
external usenet poster
 
Posts: 1,358
Default 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