Copy Unique Item from One Sheet to Other Sheet

khanzgem

New Member
Joined
Nov 7, 2015
Messages
16
I have One sheet which have one ITEM many times
for example

I need a formula which copy UNIQUE Item ONE time to Other sheet.

Example
One Sheet
APPLE
APPLE
APPLE
ORANGE
ORANGE
BANANA

Other Sheet
APPLE
ORANGE
BANANA
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
If your original list is on Sheet1!A2:A10 (I put a header in A1), then you can do this on Sheet2:

A
1List
2APPLE
3ORANGE
4BANANA
5

<colgroup><col style="width: 25pxpx"><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet2

Array Formulas
CellFormula
A2{=IFERROR(INDEX(Sheet1!$A$2:$A$10,SMALL(IF(Sheet1!$A$2:$A$10<>"",IF(COUNTIF($A$1:$A1,Sheet1!$A$2:$A$10)=0,ROW(Sheet1!$A$2:$A$10)-ROW(Sheet1!$A$2)+1)),1)),"")}

<thead>
</thead><tbody>
</tbody>
Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,957
Messages
6,122,466
Members
449,086
Latest member
kwindels

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