Rearrange data in 3 columns

Sinbad

Board Regular
Joined
Apr 18, 2012
Messages
224
Hi,

need help figuring this out. I was given three documents with essentially the same data, but not all documents have all the entries, so I want to combine it into one complete list.

I have copied the data as is into column A, B and c. now I wish to consolidate them so I have one list with no duplicates.

I tried the remove duplicates feature, weirdly it tells me there are no duplicated, if I do duplicate highlighting though, the sheet lights up.

Any suggestions ?

Sample:
col a
col b
col c
Fanta
CabSouv
Bread
Milk 03
Soup
Fanta
Marmite
Apples
CabSouv
Soup
Fanta
Marmite

<tbody>
</tbody>


This should result in:
Fanta
Milk 03
Marmite
Soup
CabSouv
Apples
Bread

<tbody>
</tbody>

any simple way of doing this ?

Thank you.
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Maybe...


A
B
C
D
E
1
Header1​
Header2​
Header3​
UniqueList​
2
Fanta​
CabSouv​
Bread​
Fanta​
3
Milk 03​
Soup​
Fanta​
CabSouv​
4
Marmite​
Apples​
CabSouv​
Bread​
5
Soup​
Fanta​
Marmite​
Milk 03​
6
Soup​
7
Marmite​
8
Apples​
9

Array formula in E2 copied down
=IFERROR(INDIRECT(TEXT(SMALL(IF(COUNTIF(E$1:E1,A$2:C$5)=0,ROW(A$2:C$5)*10^5+COLUMN(A$2:C$5)),1),"R0C00000"),0),"")
confirmed with Ctrl+Shift+Enter, not just Enter

M.
 
Upvote 0
Can you use this?
=IFERROR(IFERROR(IFERROR(INDEX($A$1:$A$4,MATCH(0,COUNTIF($E$1:E1,$A$1:$A$4),0)),INDEX($B$1:$B$4,MATCH(0,COUNTIF($E$1:E1,$B$1:$B$4),0))),INDEX($C$1:$C$4,MATCH(0,COUNTIF($E$1:E1,$C$1:$C$4),0)))," ") Although it looks complicated, it just selects the unique items for each range. I use the last =iferror to remove errors. Use Cntrl+Shift+Enter

FantaCabSouvBreadUnique
Milk 03SoupFantaFanta
MarmiteApplesCabSouvMilk 03
SoupFantaMarmiteMarmite
Soup
CabSouv
Apples
Bread

<colgroup><col span="2"><col><col><col></colgroup><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,216,073
Messages
6,128,646
Members
449,462
Latest member
Chislobog

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