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

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
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,214,548
Messages
6,120,146
Members
448,948
Latest member
spamiki

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