Calculating positions from scores

R

RP_L2

Hi there,

I am trying to set up a spreadsheet to track the scores for our pub quiz
league (!)
I want to be able to input the scores and have a formula return the team's
position in the quiz - eg who was first, second, third etc. I'm sure there is
an easy way of doing this but I can't work it out!
 
R

RP_L2

PS - I am doing this for someone who is not particularly computer-literate
hence wanting a formula to do this instead of using a sort then manually
entering the positions - I want to keep it as simple for them to use as
possible.
 
P

Pete_UK

Put these headings in row 1:

A1: Name
B1: Score
C1: Position

Enter your names and scores in columns A and B, then put this formula in
column C:

=RANK(B2,B$2:B$21)

and copy this down. It doesn't matter if you have less than 20 names, but if
you have more then change the range to suit.

Hope this helps.

Pete
 
R

Ron Rosenfeld

Hi there,

I am trying to set up a spreadsheet to track the scores for our pub quiz
league (!)
I want to be able to input the scores and have a formula return the team's
position in the quiz - eg who was first, second, third etc. I'm sure there is
an easy way of doing this but I can't work it out!

Use the RANK worksheet function.

=RANK(team_score,all_scores)

The third, optional argument determines if the highest or lowest score is the
first rank.
--ron
 
R

RP_L2

Thanks Pete & Ron, knew there would be a function to do it!
I was trying to think of other words for score or position to put into
search...rank duh!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top