T Troy Apr 7, 2004 #1 I am using "LARGE" to list a column from largest to lowest, and sometimes it shows one item twice. Can anyone tell me why?
I am using "LARGE" to list a column from largest to lowest, and sometimes it shows one item twice. Can anyone tell me why?
M Michael Apr 7, 2004 #2 Hi Troy Instead of using LARGE, why don't you highlight your column and then do Data/Sort/Descending Regards Michael
Hi Troy Instead of using LARGE, why don't you highlight your column and then do Data/Sort/Descending Regards Michael
V Vasant Nanavati Apr 7, 2004 #4 If the item appears twice in your source list, it will appear twice in your LARGE list. If you want only the unique items listed, you would have to use a fairly complex formula (which I don't remember offhand).
If the item appears twice in your source list, it will appear twice in your LARGE list. If you want only the unique items listed, you would have to use a fairly complex formula (which I don't remember offhand).
B Bob Phillips Apr 7, 2004 #5 Hi Vasant, I think (hope?) you are referring to the RANK+COUNTIF formula =RANK(A1,$A$1:$A$10)+COUNTIF($A$1:$A1,A1)-1 -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct)
Hi Vasant, I think (hope?) you are referring to the RANK+COUNTIF formula =RANK(A1,$A$1:$A$10)+COUNTIF($A$1:$A1,A1)-1 -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct)
T Troy Apr 7, 2004 #6 The way I had the formula set up, I only had to add another `IF' statement. Thanks.