Copying a list and removing duplicates and blanks

glad_ir

Board Regular
Joined
Nov 22, 2020
Messages
143
Office Version
  1. 2010
Platform
  1. Windows
Hello,

Please could I get some help.

I have a list in my sheet in cells C2:C40 consisting of data (selected from a drop down menu) and blank cells. I'd like to copy just the unique entries from this list into cells D2:D40, removing duplicate entries and blanks. Is this possible with a formula?

Any help would be much appreciated

Thank you,
Iain
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
How about in D2 dragged down
Excel Formula:
=INDEX($C$2:$C$40,AGGREGATE(15,6,(ROW($C$2:$C$40)-ROW($C$2)+1)/($C$2:$C$40<>"")/(ISNA(MATCH($C$2:$C$40,D$1:D2,0))),1))
 
Upvote 0
@Fluff
Should that D$1:D2 be D$1:D1?
May also need an IFERROR?

Another possibility ..

21 04 02.xlsm
CD
1
2aa
3bb
4cc
5dd
6ar
7ce
8dw
9r 
10 
11e 
12w 
13a 
14 
15 
16b 
17c 
18d 
19c 
20 
Unique List
Cell Formulas
RangeFormula
D2:D20D2=IFERROR(INDEX($C$2:$C$40,MATCH(0,INDEX(COUNTIF($D$1:D1,$C$2:$C$40)+(C$2:C$40=""),0),0)),"")
 
Upvote 0
Should that D$1:D2 be D$1:D1?
May also need an IFERROR?
You're quite right, I very cleverly copied the formula from D3 & not D2 after adding the error handling on D2 :(
It should be
Excel Formula:
=IFERROR(INDEX($C$2:$C$40,AGGREGATE(15,6,(ROW($C$2:$C$40)-ROW($C$2)+1)/($C$2:$C$40<>"")/(ISNA(MATCH($C$2:$C$40,D$1:D1,0))),1)),"")
 
Upvote 0
Solution
You're quite right, I very cleverly copied the formula from D3 & not D2 after adding the error handling on D2 :(
It should be
Excel Formula:
=IFERROR(INDEX($C$2:$C$40,AGGREGATE(15,6,(ROW($C$2:$C$40)-ROW($C$2)+1)/($C$2:$C$40<>"")/(ISNA(MATCH($C$2:$C$40,D$1:D1,0))),1)),"")
This works a treat. Thank you both very much.

cheers, Iain
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,518
Messages
6,119,996
Members
448,935
Latest member
ijat

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