+ Reply to Thread
Results 1 to 11 of 11

Tiebreaker for the Rank function?

  1. #1
    Registered User
    Join Date
    04-05-2014
    Location
    Marshalltown, IA
    MS-Off Ver
    Excel 2013
    Posts
    5

    Tiebreaker for the Rank function?

    I need something to deal with the ties that occur when using the Rank function on a set of data I have. Let's say I am getting these ranks:

    1
    2
    3
    3
    5
    6

    I would like to make it so that when a value is the same, the rank adds .5 to the last rank, and continues to the next number. The ranks would then look like this:

    1
    2
    3.5
    3.5
    4
    5

    How could I do this? I appreciate all your help in advance! (:

  2. #2
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Tiebreaker for the Rank function?

    I didn't know there was an Excel version 2014?

    Try one of these...

    For lowest to highest:

    =RANK.AVG(A1,A$1:A$10,1)

    For highest to lowest:

    =RANK.AVG(A1,A$1:A$10)
    Last edited by Tony Valko; 04-05-2014 at 03:15 PM.
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  3. #3
    Forum Expert bebo021999's Avatar
    Join Date
    07-22-2011
    Location
    Vietnam
    MS-Off Ver
    Excel 2016
    Posts
    9,466

    Re: Tiebreaker for the Rank function?

    Assuming data set is in A1:A6
    In B1:
    =RANK(A1,$A$1:$A$6)
    In B2 and drag down
    =RANK(A2,$A$1:$A$6)+COUNTIF($B$1:B1,RANK(A2,$A$1:$A$6))/2
    Quang PT

  4. #4
    Registered User
    Join Date
    04-05-2014
    Location
    Marshalltown, IA
    MS-Off Ver
    Excel 2013
    Posts
    5

    Re: Tiebreaker for the Rank function?

    Quote Originally Posted by Tony Valko View Post
    I didn't know there was an Excel version 2014?

    Try one of these...

    For lowest to highest:

    =RANK.AVG(A1,A$1:A$10,1)

    For highest to lowest:

    =RANK.AVG(A1,A$1:A$10)
    Sorry about that, I'm not at my home computer right now so I wasn't sure what version it was. :o Thanks for the reply! I'll give it a try

  5. #5
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Tiebreaker for the Rank function?

    Ok, you'll need Excel 2010 or later for that formula.

  6. #6
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Tiebreaker for the Rank function?

    I'm having second thoughts as whether that's the correct formula for what you want to do.

    Let's try this...

    Show us what results you expect for the sample data below:

    Data Range
    A
    B
    1
    Value
    Rank
    2
    10
    3
    10
    4
    7
    5
    6
    6
    6
    7
    6
    8
    4
    9
    4
    10
    2
    11
    1

  7. #7
    Registered User
    Join Date
    04-05-2014
    Location
    Marshalltown, IA
    MS-Off Ver
    Excel 2013
    Posts
    5

    Re: Tiebreaker for the Rank function?

    untitled.PNG

    This is what it would look like.

    Here is the actual document I am trying to do this with. I entered in the desired values into where they would be with the mystery formula.

    https://docs.google.com/spreadsheets...it?usp=sharing
    Last edited by shanewignall; 04-05-2014 at 04:39 PM.

  8. #8
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Tiebreaker for the Rank function?

    Data Range
    A
    B
    1
    Value
    Rank
    2
    10
    4.5
    3
    10
    4.5
    4
    7
    4
    5
    6
    3.5
    6
    6
    3.5
    7
    6
    3.5
    8
    4
    2.5
    9
    4
    2.5
    10
    2
    2
    11
    1
    1




    I don't understand the logic in those ranks. Can you explain how you arrive at those results?

  9. #9
    Registered User
    Join Date
    04-05-2014
    Location
    Marshalltown, IA
    MS-Off Ver
    Excel 2013
    Posts
    5

    Re: Tiebreaker for the Rank function?

    Quote Originally Posted by Tony Valko View Post
    Data Range
    A
    B
    1
    Value
    Rank
    2
    10
    4.5
    3
    10
    4.5
    4
    7
    4
    5
    6
    3.5
    6
    6
    3.5
    7
    6
    3.5
    8
    4
    2.5
    9
    4
    2.5
    10
    2
    2
    11
    1
    1




    I don't understand the logic in those ranks. Can you explain how you arrive at those results?
    It's actually a way of ranking used in Statistics workflows.

    I actually think I have been telling you wrong. I apologize for that. Okay, here is the logic:

    When there is a tie between two numbers (5 and 6 for example), it defaults to the mean of those two ranks (5.5) It then would continue to 7,8,9,etc. Example:Capture.PNG



    Again, sorry for completely saying the wrong thing before. I'm actually doing this to make the workflow of my Statistics assignments less terrible.
    Last edited by shanewignall; 04-06-2014 at 01:48 PM.

  10. #10
    Registered User
    Join Date
    04-05-2014
    Location
    Marshalltown, IA
    MS-Off Ver
    Excel 2013
    Posts
    5

    Re: Tiebreaker for the Rank function?

    After realizing what I really need, that rank.avg is actually exactly what I needed. Thanks so much!!

  11. #11
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: Tiebreaker for the Rank function?

    Good deal. Thanks for the feedback!


    If your question has been solved please mark the thread as being solved.

    In the menu bar above the very first post select Thread Tools, then select Mark this thread as solved.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Ranking within a group but also with Tiebreaker
    By ncurran217 in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 01-16-2014, 06:30 PM
  2. [SOLVED] Using the RANK function to rank decimal numbers
    By CRinne in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 10-29-2013, 02:14 PM
  3. [SOLVED] Index/Rank Problem, based on criteria, if match then tiebreaker
    By brotherwo in forum Excel General
    Replies: 4
    Last Post: 08-29-2012, 10:14 AM
  4. Indoor Soccer League Table Tiebreaker Help
    By JakeD in forum Excel General
    Replies: 10
    Last Post: 10-20-2011, 02:34 PM
  5. high scores and tiebreaker
    By odha in forum Excel General
    Replies: 3
    Last Post: 10-01-2009, 01:17 PM

Tags for this Thread

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