checking columns for matches

srmorgan

Board Regular
Joined
Apr 18, 2002
Messages
184
Office Version
  1. 365
Platform
  1. Windows
Here is an old problem and I wonder if anyone has found a solution for it.

I sometimes have to reconcile two columns of items, different lengths, and some of the items on column A might not be on column B and some of the items in column B might not be in column A.
How do you find the ones that match or the ones that don't match?

I have been using Vlookups from one to the other and vice versa but that is clunky.
Is there a way to identify the unmatched items easily?

Thanks to all

SRMorgan
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Supposing the columns are A and B:
for col A cells
Code:
=IF(ISNA(MATCH(Cell in A,Col B range address absolute,0)),"No Match in col B for cell in col A","")
for col B cells
Code:
=IF(ISNA(MATCH(Cell in B,Col A range address absolute,0)),"No Match in col A for cell in col B","")
 
Upvote 0
JoeMo,

Could you clarify the text in your response, i.e, would it look like this =IF(ISNA(MATCH(a4,$b$4:$b4$1500,0)),"NO MATCH FOR COLUMN A. ETC.","")?

thank you for your help!
 
Upvote 0

Forum statistics

Threads
1,214,375
Messages
6,119,168
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