hello,
I have been using the SMALL function to find 10 smallest values in a list, however, some of the values are the same, is there a way of only having the 10 smallest unique values within a list?
Hopefully someone has an idea
thanks reg
hello,
I have been using the SMALL function to find 10 smallest values in a list, however, some of the values are the same, is there a way of only having the 10 smallest unique values within a list?
Hopefully someone has an idea
thanks reg
Last edited by reggie1000; 10-02-2008 at 12:37 PM.
Assuming your data starts in cell A1, then you can paste this in cell B1 and copy down.
It will change your list, so it only includes unique values.![]()
Please Login or Register to view this content.
Then, just change your small functions to point to this new range of data.
There are some better ways of handling this with the countif function, so you might consider playing around with it.
Assuming that A2:A100 contains the data, try...
C2, confirmed with CONTROL+SHIFT+ENTER:
=SUM(IF(FREQUENCY(A2:A100,A2:A100),1))
D2, confirmed with CONROL+SHIFT+ENTER, and copied down:
=IF(ROWS(D$2:D2)<=$C$2,SMALL(IF($A$2:$A$100<>"",IF(ISNA(MATCH($A$2:$A$100,$D$1:D1,0)),$A$2:$A$100)),1),"")
Hope this helps!
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks