+ Reply to Thread
Results 1 to 2 of 2

Ranking list with ties?

Hybrid View

  1. #1
    Registered User
    Join Date
    07-15-2012
    Location
    Albuquerque, New Mexico
    MS-Off Ver
    Excel 2007
    Posts
    3

    Ranking list with ties?

    Hi, I'm trying to come up with a formula that assigns ranks to an ascending list of integer values where ties are resolved by assigning tied values the mean of the ranks they would have received if there were no ties, e.g., 117, 119, 119, 125, 128 becomes 1, 2.5, 2.5, 4, 5. (If the two 119s were not tied, they would have been assigned the ranks 2 and 3, yielding a mean of 2.5.) My list looks like this:

    Column_A Column_B
    1
    1
    1
    2
    3
    4
    4
    5
    ...

    Help appreciated, thank you!

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Ranking list with ties?

          --A-- -B--
      1   Value Rank
      2       1    2
      3       1    2
      4       1    2
      5       2    4
      6       3    5
      7       4  6.5
      8       4  6.5
      9       5    8
    B2 and copied down:

    =COUNTIF($A$2:$A$9, "<" & A2) + (COUNTIF($A$2:$A$9, A2) + 1) / 2
    Last edited by shg; 07-15-2012 at 01:43 PM.
    Entia non sunt multiplicanda sine necessitate

+ 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