Rank help (without skipping numbers and skipping blanks)

adurham22926192

New Member
Joined
Dec 17, 2019
Messages
49
Office Version
  1. 2019
Platform
  1. Windows
I need a formula to rank without skipping numbers. This is for a dance scoring software. In column C, I need to rank column B without skipping numbers so if say for example there is a 2 way tie for 4th (Rank: 4) it won’t go to 6 on the next rank it will go to 5. Also, i need the formula to skip the blank cells. Please help.

ABC
1Competitor NumberScoreRank
22770
31380
44176
5
61474
73160
8
 
No, it doesn't work with decimals. I agree with Marcelo, the best way to do this is with a list of unique scores. I came up with a formula based way to get them (see columns I and J below). Then I also realized Marcelo's use of COUNTIF is better than the SUMPRODUCT I had been using.

Book1 (version 1).xlsb
ABCDEFGHIJ
11Competitor NumberScoreRankCompetitor NumberScoreRankColCColF
22277051260670 
3313743872.8747472.87
44417623876276 
55 12606  
661486.51 86.5 
77316061386.5160 
8
Sheet18
Cell Formulas
RangeFormula
I2:I7I2=IF(C2="","",IF(MATCH(C2,$C$2:$C$7,0)=ROW($C2)-ROW($C$2)+1,C2,""))
J2:J7J2=IF(F2="","",IF(AND(MATCH(F2,$F$2:$F$7,0)=ROW($F2)-ROW($F$2)+1,COUNTIF($C$2:$C$7,F2)=0),F2,""))
D2:D7,G2:G7D2=IF(C2="","",COUNTIF($I$2:$J$7,">"&C2)+1)
 
Upvote 0

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest

Forum statistics

Threads
1,224,802
Messages
6,181,054
Members
453,014
Latest member
Chris258

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top