Unique Values

aabbasi

Board Regular
Joined
Mar 4, 2002
Messages
188
I have added the following addin: MoreFunc from
http://longre.free.fr/english/index.html,

There is a function called {=UNIQUEVALUES(Array,Order)}. My problem is that it is not giving the list of Unique values instead it is showing only one Value. Does anyone has experience working with this in Excel 2000.

Thank you.

Eg: Values 23,23,45,34,32 should show 45,34,32,23 but instead of this it is showing 45 only.
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Say your array is in A2:A10. Select B2:B10 and enter the formula =UNIQUEVALUES(A2:A10,0)
Becasue this is an array formul, you must enter it using Ctrl+Shift+Enter
 
Upvote 0
Seems like it is working to me, 45 is unique, the digits 4 and 5 are unique to that number, all other numbers in the series have a common, 23 and 32 have the digit 2; 34 and 32 have the digit 3....
 
Upvote 0
Lenze & Charles17:

Thank you for your quick reaponse.

What I am trying to achieve is that lets say if I have a list of numbers (Initial List of 8 numbers):
12, 23, 34, 44, 55, 55, 65, 23
I am trying to run the function to get unique values (6 numbers) as : 12, 23, 34, 44, 55, 65 which means the selection from initial list minus repeated numbers (in this case 55 & 23)
 
Upvote 0
Maxflia: Thank you.
Using CountDiff gives me the COUNT how many are unique, but I want to see actual data which is unique.

Aladin Thank you...but its kind of lengthy process.
 
Upvote 0
It is not a lengthy process.

With your numbers in A1:A20

put the following in B1 and copy or FillDn as
far as required.

=INDEX(UNIQUEVALUES($A$1:$A$20,1),ROW(1:1))
This message was edited by Dave Patton on 2002-10-30 11:57
 
Upvote 0
On 2002-10-30 11:45, aabbasi wrote:
Maxflia: Thank you.
Using CountDiff gives me the COUNT how many are unique, but I want to see actual data which is unique.

Aladin Thank you...but its kind of lengthy process.

Try:

=LEFT(SETV(MCONCAT(UNIQUEVALUES(Range,1),",")),LEN(GETV())-1)
 
Upvote 0

Forum statistics

Threads
1,214,377
Messages
6,119,183
Members
448,872
Latest member
lcaw

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