+ Reply to Thread
Results 1 to 12 of 12

[SOLVED]Ranking

  1. #1
    Registered User
    Join Date
    05-04-2010
    Location
    Yakima Washington
    MS-Off Ver
    Excel 2003
    Posts
    6

    [SOLVED]Ranking

    I am making a excell spread sheet for our rodeo. In column B5-B230 are the team Names, In column D is there Time. In Column E I have a macro setup to put a 1-10 on the 10 fastest times.

    What i need help with is in Q17 we would like it to show the team name with the fastest time. and then in Q18 show the team with the 2nd fastest time. and so on thru 6th place.

    So i guess what i need it to do is either rank column D and if it is Rank 1, show the team name in Q17.

    Or else sence I allready have it listing 1 thru 10 in column E, is there a way to make a macro that says if it is 1, then show the team name in Q17, if it is 2, show the team name in Q18..???

    any help would be appricaited, thanks
    Last edited by seahawks3726; 05-05-2010 at 02:04 PM.

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Ranking

    It all rather depends on how you're accounting for duplicity of Rank - ie if 2nd and 3rd have the same time how is this being denoted (ie both rank 2 or rank 2 & rank 3 ?)

    If you always have unique identifiers you can use an INDEX/MATCH, eg:

    Q17: =INDEX($B$5:$B$230,MATCH(ROWS(Q$17:Q17),$E$5:$E$230,0))
    copied down

    If the ranking is not unique (ie not nec. listing all digits 1 to 10) then you will need to adopt a variation of the above (or adjust the rank such that it is unique)

  3. #3
    Registered User
    Join Date
    05-04-2010
    Location
    Yakima Washington
    MS-Off Ver
    Excel 2003
    Posts
    6

    Re: Ranking

    Donkey, thanks for the help, but every number is not unique, and we usually end up with a couple ties.

    Your equation worked great except when i have a tie, it just shows the first team name as 5th, and a N/A for 6th place...

    if we have two teams tie with the same time for 2nd place, then they will split the 2nd and 3rd place money.

    but with this equation it just shows the first team as 2nd place and the 2nd team as N/A... How would i go about changing this to show the 2nd team as 2nd also, and then go to forth place after that.. Pretty much just how rank works, show two number 2's and no 3, and then skip to forth..

    hope this made sence..
    Last edited by seahawks3726; 05-04-2010 at 10:41 PM.

  4. #4
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Ranking

    Quote Originally Posted by seahawks3726
    Your equation worked great except when i have a tie
    Yes, the prior suggestion (as outlined) is reliant on unique identifiers.

    To account for duplicates in terms of rank and assuming that the names (B5:B230) are themselves unique then:

    Please Login or Register  to view this content.
    it is imperative in the above that Q16 does not contain the name of any team in the B5:B230 listing.
    Last edited by DonkeyOte; 05-05-2010 at 04:30 AM. Reason: added CODE tags - spurious space insertion

  5. #5
    Registered User
    Join Date
    05-04-2010
    Location
    Yakima Washington
    MS-Off Ver
    Excel 2003
    Posts
    6

    Re: Ranking

    What if I have duplicate names in B5 thru B230? that last equation works great until i have a name that has allready placed, and it just puts a N/A for them... How would i get it to work with duplicate names?

    thanks again for the help!!

  6. #6
    Registered User
    Join Date
    05-04-2010
    Location
    Yakima Washington
    MS-Off Ver
    Excel 2003
    Posts
    6

    Re: Ranking

    would I need to do an array or something for this??? or any Idea how i can get it to show the same name more then once?

    thanks for the help donkey!

  7. #7
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Ranking

    So, to be clear, you're saying the relationship between Team (B) & Time (D) is not 1:1 and that any given Team may place multiple times within the Top 10 ?

    A sample file might help us visualise exactly what's listed etc...

  8. #8
    Registered User
    Join Date
    05-04-2010
    Location
    Yakima Washington
    MS-Off Ver
    Excel 2003
    Posts
    6

    Re: Ranking

    well, a team consist or a header and a heeler. Each person can enter up to 3 times. So it is possible for the same person to place 3 times in the top 10..

    I attached the excell sheet i am working on, you will see a list of names in colums B and C.. and Times in E, G and I. If you look at Q17, you will see what i am working on and the N/A for duplicate names..

    What i need is to figure out something that will take the top 10 fastest times from Row E, and put there names in the saturday winners spot...
    Attached Files Attached Files

  9. #9
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Ranking

    What I would suggest you do (for sake of simplicity) is modify your RANK values, eg:

    E5: =IF(D5=0,"",IF(RANK(D5,D:D,1)>10,"",RANK(D5,D:D,1)+ROW(D5)/10000))
    copied down
    (then copied to Col G, I)

    This means each RANK value becomes unique by virtue of the decimal remainder which is the ROW number / 10000

    With the above in place the resulting tables are pretty straightforward, eg:

    Q17: =INDEX(B$5:B$230,MATCH(LARGE($E$5:$E$230,ROWS(Q$17:Q17)),$E$5:$E$230,0))
    copied across matrix Q17:S26

    the above table logic can be replicated in the other tables though you will need to adjust reference to Col E (to G, I respectively) and also references to Q$17 (to Q$30 and Q$44 respectively)

  10. #10
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Ranking

    Further to the above - you would also need to adjust references for the Time column in each table (from D to F etc..)

  11. #11
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Ranking

    Apologies - I've used LARGE in the above whereas I should have used SMALL - adjust all formulae accordingly.

    Apologies for confusion caused - (what happens when I try to multi task)

  12. #12
    Registered User
    Join Date
    05-04-2010
    Location
    Yakima Washington
    MS-Off Ver
    Excel 2003
    Posts
    6

    Re: Ranking

    WOW, thanks alot Donkey, I really appricaite the help... I will change this to SOLVED!!!!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1