cascading ranking system

R

Ray

This is an interesting one .... I tried searching around and didn't
find anything, but to be honest, I wasn't quite sure what to search
for!

I'm developing a 'scoring sheet' for a local Parks & Rec department
event. The data input is fairly simple: one row for each participant
(in an event) and three blocks to enter their scores (ie distance,
time, etc). Then, using the Large function, I pull the best result
for each participant and rank them to get 1st, 2nd, & 3rd place. I
also pull the 2nd best and 3rd best results (with ranking), but only
for those that tied. So, if there's no tie in the initial ranking of
the best result, the 2nd/3rd best results are ignored.

This system works fine, but only in limited circumstances -- as soon
as there are more than 2 people tied for a position OR if there are
multiple ties (ie two tied for 1st and two tied for 2nd), the whole
system blows up.

Any ideas how I can do such a thing? Email me directly and I'll be
happy to send a sample file so you can see what I've done so far ....

TIA,
Ray
 
B

Bernie Deitrick

Ray,

Here's one way.

Let's assume that you have names in column A, and results in columns B, C, and D, with headers in
row 1.

In cell E1, enter Higher if a higher score is a good thing (like distance thrown), or Lower if a
lower value is better (like running times).

In cell E2, enter the formula

=IF($E$1="higher",MAX(B2:D2)+LARGE(B2:D2,2)/1000+LARGE(B2:D2,3)/1000000,MIN(B2:D2)+SMALL(B2:D2,2)/1000+SMALL(B2:D2,3)/1000000)

and in cell F2, enter the formula

=RANK(E2,$E:$E,IF($E$1="Higher",0,1))

Copy cells E2:F2 down their columns to match your data rows.

HTH,
Bernie
MS Excel MVP
 

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

Similar Threads

Ranking Lists 3
Ranking Data 7
Ranking Duplicate Numbers 2
nested "If" fuction 4
Comparing ranking 1
Ranking problem 8
Looking up a value next to a designated cell 3
Ranking- Multiple Columns 1

Top