R
Robert
Using this list:
100 200
101 102
201 202
I want to check whether e.g. 201 is present in this table.
Using a MATCH function I can lookup in one column at the time but as
201 can be in either column I don't want multiple MATCH functions.
=MATCH(201;A1:A3;0) for column A
or
=MATCH(201;B1:B3;0) for column B
Using something like a nested IF might work but is quite complicated:
=IF(ISERROR(MATCH....
Any simple solutions?
Thanks - Rob
100 200
101 102
201 202
I want to check whether e.g. 201 is present in this table.
Using a MATCH function I can lookup in one column at the time but as
201 can be in either column I don't want multiple MATCH functions.
=MATCH(201;A1:A3;0) for column A
or
=MATCH(201;B1:B3;0) for column B
Using something like a nested IF might work but is quite complicated:
=IF(ISERROR(MATCH....
Any simple solutions?
Thanks - Rob