I can't figure this out and any help is appreciated. If I put a number (e.g. 1) in A1 and another number in B1 (e.g. 2) and use this formula:
Or this formula:
then I get the correct answer: TRUE
Now if I use words. For example:
A1 = Yes
B1 = No
And use the formula:
I get the correct answer: TRUE
If I try to use an array, it works only if I ask if the word "No" is present, but not "Yes".
but this one doesn't work:
Why is this inconsistency happening and are there any rules I should be aware of regarding this issue?
Thanks.
AMAS
Code:
=OR(A1=1,B1=2)
Or this formula:
Code:
=OR(A1,B1={1})
then I get the correct answer: TRUE
Now if I use words. For example:
A1 = Yes
B1 = No
And use the formula:
Code:
=OR(A1="Yes",B1="No")
I get the correct answer: TRUE
If I try to use an array, it works only if I ask if the word "No" is present, but not "Yes".
Code:
=OR(A1,B1={"No"})
but this one doesn't work:
Code:
=OR(A1,B1={"Yes"})
Why is this inconsistency happening and are there any rules I should be aware of regarding this issue?
Thanks.
AMAS