I'm struggling a little bit with Excel MATCH function (Excel 2016). I'm able to use the basic MATCH when comparing one column to another, but lacking the ability to compare 2 sets of columns at the same time:
Value_1 Value_2 Comp_1 Comp_2
700 A24 555 C2
750 A34 620 B77
620 B77 700 A24
555 C1 750 D9
I would not have a problem in comparing Value_1 (column A) to Comp_1 (column C) and Value_2 (column B) vs Comp_2 (column D) separately with:
=MATCH(A1;C$1:C$4;0)
However what I need, is to compare both columns Value_1 AND Value_2 to the columns Comp_1 and Comp_2.
For an example A1&B1 are matched in C3&B3, however there is no match for A2&B2. Is there a way to run a MATCH function for that?
I am aware that if I would utilize extra columns to combine values in tune of =A1&B1 & =C1&D1 and then proceed to run simple MATCH formula known to me for this new combined data, it should work, however I'm looking if there is a way to compare those extended ranges without combining them in extra space. Ideally with MATCH, which is "close to the vest" or other formulas if need be.
Thanks!