making a rank equal a value

emde84

New Member
Joined
Aug 6, 2013
Messages
12
Hi,

Im running a competition where I need to allocate points. there are 21 people in the competition and I have used the rank function to quickly identify who has came first etc. What I'm wondering, is there a function that can be used to make the rank = a value

eg.
rank 1 would equal 21 points,
rank 2 would equal 20 points
rank 3 would equal 19 points
and so on..

Cheers
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
Hi - welcome to the board.

Simplest way would be to have a 'rank value' table - rank in one column, value for that rank in the next. You'd then use a vlookup to return the value for each rank:

=vlookup(a1,$b$1:$c$10,2,0)

where:

a1 is the rank you want a value for
b1:c10 is the two column table that holds ranks & values
2 tells the vlookup to return the value in the secxond column of the table
0 tells vlookup only to return exact mathes

...change references to suit
 
Upvote 0
Hey, Cheers!

Very green at excel and have been playing around so that i can my comp just about automated. vlookup helped a lot!
much appreciated!!
 
Upvote 0
have i missed something here or does the following not suffice, negating the need for lookups

=22-(rank(a1,$a$1:$a$21)
or
=21-(rank(a1,$a$1:$a$21)
 
Upvote 0
No, to extent that gives the answer. Perhaps, to exent that introducing novice to the wonders of vlookup() increases the summum bonum.
 
Upvote 0

Forum statistics

Threads
1,216,028
Messages
6,128,399
Members
449,447
Latest member
M V Arun

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