Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
RANK function omits the next rank number in a series after each set of tied
scores. For instance, if a cluster of scores are "2", the next ranking will be 4 instead of 3. I want the rankings to show the next number in the rank sequence and not to skip it. Is there a formula or a function which will allow this? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
With the numbers in A2:A11
This will also account for empty cells: =IF(A2="","",SUMPRODUCT(--(A2<A$2:A$11),1/COUNTIF(A$2:A$11,A$2:A$11&""))+1) Copy down as needed If there won't be any empty cells: =SUMPRODUCT(--(A2<A$2:A$11),1/COUNTIF(A$2:A$11,A$2:A$11))+1 Biff "Douglas Eckert" wrote in message ... RANK function omits the next rank number in a series after each set of tied scores. For instance, if a cluster of scores are "2", the next ranking will be 4 instead of 3. I want the rankings to show the next number in the rank sequence and not to skip it. Is there a formula or a function which will allow this? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you VERY MUCH, Biff! That was beautiful!
"T. Valko" wrote: With the numbers in A2:A11 This will also account for empty cells: =IF(A2="","",SUMPRODUCT(--(A2<A$2:A$11),1/COUNTIF(A$2:A$11,A$2:A$11&""))+1) Copy down as needed If there won't be any empty cells: =SUMPRODUCT(--(A2<A$2:A$11),1/COUNTIF(A$2:A$11,A$2:A$11))+1 Biff "Douglas Eckert" wrote in message ... RANK function omits the next rank number in a series after each set of tied scores. For instance, if a cluster of scores are "2", the next ranking will be 4 instead of 3. I want the rankings to show the next number in the rank sequence and not to skip it. Is there a formula or a function which will allow this? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're welcome. Thanks for the feedback!
Biff "Douglas Eckert" wrote in message ... Thank you VERY MUCH, Biff! That was beautiful! "T. Valko" wrote: With the numbers in A2:A11 This will also account for empty cells: =IF(A2="","",SUMPRODUCT(--(A2<A$2:A$11),1/COUNTIF(A$2:A$11,A$2:A$11&""))+1) Copy down as needed If there won't be any empty cells: =SUMPRODUCT(--(A2<A$2:A$11),1/COUNTIF(A$2:A$11,A$2:A$11))+1 Biff "Douglas Eckert" wrote in message ... RANK function omits the next rank number in a series after each set of tied scores. For instance, if a cluster of scores are "2", the next ranking will be 4 instead of 3. I want the rankings to show the next number in the rank sequence and not to skip it. Is there a formula or a function which will allow this? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
http://www.cpearson.com/excel/rank.htm
-- Regards, Peo Sjoblom "Douglas Eckert" wrote in message ... RANK function omits the next rank number in a series after each set of tied scores. For instance, if a cluster of scores are "2", the next ranking will be 4 instead of 3. I want the rankings to show the next number in the rank sequence and not to skip it. Is there a formula or a function which will allow this? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Thank you!
"Peo Sjoblom" wrote: http://www.cpearson.com/excel/rank.htm -- Regards, Peo Sjoblom "Douglas Eckert" wrote in message ... RANK function omits the next rank number in a series after each set of tied scores. For instance, if a cluster of scores are "2", the next ranking will be 4 instead of 3. I want the rankings to show the next number in the rank sequence and not to skip it. Is there a formula or a function which will allow this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
RANK, duplicate ranking but no gaps in rank | Excel Worksheet Functions | |||
Rank(A1,C1:C5) - Rank using 2 ranges | Excel Worksheet Functions | |||
Rank where lowest value is highest rank | Excel Worksheet Functions | |||
Does Correl/Rank combo work eg CORREL(cols E & H) where E&H=RANK(. | Excel Worksheet Functions | |||
Rank items, select one start date, have remaining dates follow based on rank | Excel Discussion (Misc queries) |