Find Duplicates question

Mikelowrey

Board Regular
Joined
Apr 20, 2014
Messages
57
Office Version
  1. 2016
Platform
  1. Windows
Hello,

I have 2 docs that have phone numbers and I believe most of the numbers in doc 2, are in doc 2. So this is what I'm trying to find out.

I want to put all phone numbers from doc 1 in Column A and all numbers for doc 2 in column B and I would like excel to find duplicates. Now here is the thing, in column a there is certainly duplicates, but I want to exclude those. I just want to see if there is any number in Column B that is missing from A.

I hope I was clear enough. Thank you!
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
I just want to see if there is any number in Column B that is missing from A.

A VLOOKUP with an exact match will return #N/A for those entries in Col. B not in Col. A.

Hope that helps,

Robert
 
Upvote 0
A VLOOKUP with an exact match will return #N/A for those entries in Col. B not in Col. A.

Hope that helps,

Robert

Hey Robert!

Thank you for replying, but to be honest, I am not very handy in excel, how would I find what you said? Thanks!
 
Upvote 0
VLOOKUP is a standard Excel worksheet function just like SUM.

The following will return #N/A if there is no exact match between Col. B of the active sheet and Sheet1 of the same workbook (change to suit):

=VLOOKUP(B2,Sheet1!A:A,1,0)
 
Upvote 0
VLOOKUP is a standard Excel worksheet function just like SUM.

The following will return #N/A if there is no exact match between Col. B of the active sheet and Sheet1 of the same workbook (change to suit):

=VLOOKUP(B2,Sheet1!A:A,1,0)

I have created a new sheet, where I paste it doc 1 numbers in column A and doc2 numbers in B. So i will try your option. thanks!
 
Upvote 0
VLOOKUP works across workbooks as well - the following will lookup Col. A of sheet ConsolidatedData from workbook Book.xlsx (Book4 was open when I created the formula):

=VLOOKUP(B2,[Book4.xlsx]ConsolidatedData!$A:$A,1,FALSE)
 
Upvote 0
VLOOKUP works across workbooks as well - the following will lookup Col. A of sheet ConsolidatedData from workbook Book.xlsx (Book4 was open when I created the formula):

=VLOOKUP(B2,[Book4.xlsx]ConsolidatedData!$A:$A,1,FALSE)

Where should i Paste this? sorry for my ignorance. very new to this
 
Upvote 0
It's just a standard worksheet function so put it in whatever cell (or range of cells) you want the result to appear in.
 
Upvote 0

Forum statistics

Threads
1,215,503
Messages
6,125,175
Members
449,212
Latest member
kenmaldonado

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