Match two columns to different columns

nelly9292

New Member
Joined
Jun 1, 2016
Messages
2
I am trying to find a formula that will look at two columns in one row and find that pair in different columns..

Basically I am looking for a formula that will generate the middle column. If "column A and Column B" pair matches "column D and column E", column C will return YES

Example :
TitleAuthorIn stock?Lib-titleLib-author
AAAYesCCC
BBBYesDDD
CCCYesEEE
DDDYesFFF
EEEYesHHH
FFFYesIII
GGGYesGGG
HHHYesAAA
IIIYesBBB
KKKNo
LLLNo
MMMNo

<colgroup><col width="64" span="5" style="width:48pt"> </colgroup><tbody>
</tbody>
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
There's definitely a prettier way than this but you can create 2 helper columns (I'll make them columns C and G) with the formuls =A2&" "&B2 and =E2&" "&F2. Now use a countif formula to count the number of times a value in column C shows up in column G.
 
Last edited:
Upvote 0
Better formula in C2 =IF(ISNUMBER(MATCH(A2&B2,$D$2:$D$10&$E$2:$E$10,0)),"Yes","No") Ctrl Shift Enter to make it into an array formula.
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,561
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top