adding unique values together

ben123456

New Member
Joined
Jun 17, 2011
Messages
22
Hey,



i want to be able to filter out all the different values and put them onto another table as unique values. But i dont want to use filter as it hides rows i dont want hiding or a macro because its not feasable for what im wanting it for.

Excel Workbook
AB
1apples
2pears
3apples
4pears
5banana
6banana
7apples
8pears
9banana
Sheet1




to

Excel Workbook
AB
1apples
2pears
3banana
Sheet2
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Assuming you have data down to row 100 in sheet1 try this:

In sheet2 A1

=Sheet1!A1

and then in A2 copied down as far as needed and further

=IFERROR(INDEX(Sheet1!A$1:A$100,MATCH(1,INDEX((COUNTIF(A$1:A1,Sheet1!A$1:A$100)=0)*(Sheet1!A$1:A$100<>""),0),0)),"")

assumes Excel 2007 or later
 
Upvote 0
need it for excel 2003 bud
Try this...

With your data in the range Sheet1 A1:A9...

On some other sheet...

Enter this formula in A1:

=Sheet1!A1

Enter this array formula** in A2 and copy down until you get blanks:

=LOOKUP("zzz",CHOOSE({1,2},"",INDEX(Sheet1!A$1:A$9,MATCH(0,COUNTIF(A$1:A1,Sheet1!A$1:A$9),0))))

** array formulas need to be entered using the key
combination of CTRL,SHIFT,ENTER (not just ENTER).
Hold down both the CTRL key and the SHIFT key
then hit ENTER.
 
Upvote 0

Forum statistics

Threads
1,224,597
Messages
6,179,808
Members
452,944
Latest member
2558216095

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