Unique List From 2 Columns

L

Legacy 436357

Guest
Hello,

I have a full list of 5 digit numbers in Column B and an incomplete list of 5 digit numbers in Column A. How can I have a unique list in Column C?

These will be the missing 5 digit numbers.

Can this be done with formulas?


Thank you very much for your help.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
are you able to use PowerQuery (Get&Transform)?

if so...

Code:
[SIZE=1]// Table1
let
    Source = Table.ToColumns(Excel.CurrentWorkbook(){[Name="Table1"]}[Content]),
    ToTable = Table.FromList(Source, Splitter.SplitByNothing(), null, null, ExtraValues.Error),
    Expand = Table.ExpandListColumn(ToTable, "Column1"),
    RemDup = Table.Distinct(Expand),
    Filter = Table.SelectRows(RemDup, each ([Column1] <> null))
in
    Filter[/SIZE]
 
Upvote 0
I appreciate the help but was hoping for a formula.

Thank you I will try googling it.
 
Upvote 0
Yes I just need the unique numbers. There are many matches between columns A and B I just need the ones that don't have a match.

Thank you
 
Upvote 0
Yes I just need the unique numbers. There are many matches between columns A and B I just need the ones that don't have a match.

Thank you

Hi,
This is my first post so hopefully I've done this right...

To only show values from Col A that don't appear in Col B, type the following into Cell C1...

=IF(COUNTIF(B:B,A1)=0,A1,"")

...and copy down to the end of column C.

I hope this helps.
 
Upvote 0

Forum statistics

Threads
1,213,507
Messages
6,114,029
Members
448,543
Latest member
MartinLarkin

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