Using rank formula Si that the result ends the opposite way

Alpacino

Well-known Member
Joined
Mar 16, 2011
Messages
511
Let me explain. I have a table like a league. I like to give points to the team with the best result the total number of teams in the league and and the worst 1
Table contains 24 teams
E.g team A is the best so they will get 24 points for coming 1st
E.g team X is the worst so they will get 1 point for coming 24th

I want to use rank to tell me what position they are in 1st 2nd etc but then give them points.

So question is how to do this. Perhaps negative rank so assigns lookup name with opposite value??

Anyone help???

Thanks :)
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Let's assume your data is as follows (including headers): Teams in A1:A25; Points in B1:B25; Positions in C1:C25.

In B2, copied down, try:

Code:
=COUNTA(A2:A$25)

In C2, copied down, try:

Code:
=RANK(B2,B$2:B$25,0)

Matty
 
Upvote 0
Let me explain. I have a table like a league. I like to give points to the team with the best result the total number of teams in the league and and the worst 1
Table contains 24 teams
E.g team A is the best so they will get 24 points for coming 1st
E.g team X is the worst so they will get 1 point for coming 24th

I want to use rank to tell me what position they are in 1st 2nd etc but then give them points.

So question is how to do this. Perhaps negative rank so assigns lookup name with opposite value??

Anyone help???

Thanks :)
Maybe this...

Book1
ABC
1TeamScorePoints
2Team16610
3Team26610
4Team3358
5Team4337
6Team5256
7Team6235
8Team7214
9Team8183
10Team9172
11Team1031
Sheet1

This formula entered in C2 and copied down:

=COUNTIF(B$2:B$11,"<="&B2)
 
Upvote 0

Forum statistics

Threads
1,224,595
Messages
6,179,798
Members
452,943
Latest member
Newbie4296

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