PLEEEEEASE HELP

  • Thread starter Thread starter CC
  • Start date Start date
C

CC

I've try associate IF OR AND all toghether
like

IF cell A4 >1 AND ( cell A5 = "AAA" OR Cell A6 = "BBB" ) Then ...

but not with sucess

I apreciate your help
cc
 
Try it like this:

=IF(AND(A4>1,OR(A5="AAA",A6="BBB")), action_if_true, action_if_false)

Hope this helps.

Pete
 
It works

Thank you Pete
cc



Pete_UK said:
Try it like this:

=IF(AND(A4>1,OR(A5="AAA",A6="BBB")), action_if_true, action_if_false)

Hope this helps.

Pete
 

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