Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How can I rank a set of values in a range that meet a specified
criteria? An example: range A1:A10 contains the number of wins a team has. range B1:B10 contains each team's goal differential. For teams that have the same number of wins, I want to be able to rank them on their goal differential. I don't want to sort the list and then rank (this is a simplified example) - rather having excel automatically identifying all of the ties and breaking them. Any help?? Thanks, adh |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
The higher goal differential is ranked better. Entered in C1: =RANK(A1,A$1:A$10)+SUMPRODUCT(--(A1=A$1:A$10),--(B1<B$1:B$10)) Copy down to C10 Biff wrote in message oups.com... How can I rank a set of values in a range that meet a specified criteria? An example: range A1:A10 contains the number of wins a team has. range B1:B10 contains each team's goal differential. For teams that have the same number of wins, I want to be able to rank them on their goal differential. I don't want to sort the list and then rank (this is a simplified example) - rather having excel automatically identifying all of the ties and breaking them. Any help?? Thanks, adh |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thanks, biff.
would it be possible to add a third ranking criteria? say two teams are tied for both wins and goals scored, so i want to break that tie in a third column (say, C1:C10) which is goals scored at home. thanks!! -adh |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The higher goals scored are ranked better:
=RANK(A1,A$1:A$10)+SUMPRODUCT(--(A1=A$1:A$10),--(B1<B$1:B$10))+SUMPRODUCT(--(A1=A$1:A$10),--(B1=B$1:B$10),--(C1<C$1:C$10)) Biff wrote in message ups.com... thanks, biff. would it be possible to add a third ranking criteria? say two teams are tied for both wins and goals scored, so i want to break that tie in a third column (say, C1:C10) which is goals scored at home. thanks!! -adh |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
add numbers if they meet criteria...? | Excel Worksheet Functions | |||
how to sum highest ranking values meeting criteria within a limit? | Excel Discussion (Misc queries) | |||
Sum range of values that meet date criteria | Excel Discussion (Misc queries) | |||
Counting Values that meet another cells criteria | Excel Worksheet Functions | |||
Sum the values of one column, only if they meet certain criteria . | Excel Worksheet Functions |