Nested Logical Statements:

C

CARLOS

I am trying to write a formula that will do the following:

Return TRUE if the value in A1<>X OR the value in B1<>"YES"

Thanks.

BTW. This site has been very helpful !!
 
F

Felipe

=OR(A1<>"X",B1<>"YES")

Regards,
Felipe
-----Original Message-----
I am trying to write a formula that will do the following:

Return TRUE if the value in A1<>X OR the value in
 
N

North Shore Willy

Carlos:

Try this formula in any cell other than A1 or B1:

=IF(AND(A1<>"X",B1<>"YES"),"TRUE","FALSE")

I assume you want a string answer result in the test
formula cell.
 

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

Top