How to compare two sheets of data for matches?

iamanexcelnoob

Board Regular
Joined
Jun 15, 2016
Messages
71
hi all. curious what the best method for comparing two sheets of data.

essentially, i want to see which data in Sheet A turns up in Sheet B.

there are 3 columns (A,B,C) of data with matching parameters in both sheets that i would want to make sure align.

is an index/match formula the best to use in this instance? anything else? i tried conditional formatting and that didn't seem to work.

thanks all!
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
One way is to concatenate each row in column D on both sheets, for example, in sheet A, in cell D2
= A2 & B2 & C2
and copy this formula down to the end of your data.

The same on sheet B.

Now, on sheet A in cell E2, you put this formula:

=MATCH(D2,SheetB!D:D,0)


And copy down.
 
Upvote 0
One way is to concatenate each row in column D on both sheets, for example, in sheet A, in cell D2
= A2 & B2 & C2
and copy this formula down to the end of your data.

The same on sheet B.

Now, on sheet A in cell E2, you put this formula:

=MATCH(D2,SheetB!D:D,0)


And copy down.

awesome. let me give this a whirl!
 
Upvote 0
Ok, let me know if you have any questions.
 
Upvote 0
One way is to concatenate each row in column D on both sheets, for example, in sheet A, in cell D2
= A2 & B2 & C2
and copy this formula down to the end of your data.

The same on sheet B.

Now, on sheet A in cell E2, you put this formula:

=MATCH(D2,SheetB!D:D,0)


And copy down.
this worked well, thank you!
 
Upvote 0
I'm glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,375
Messages
6,119,166
Members
448,870
Latest member
max_pedreira

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