Finding highest values

H

Hoytmedic

First off, thanks to all who helped me before, works great!

I have rows with multiple info, i.e. name, age, sub-event score and a final
total score. Is there a way I can have a second sheet sort through these
scores and keep a constantly updating "top four" in each age group? The "top
four" would be the top four FINAL scores from each AGE group. The tie
breaker for any ties is the value listed as TIME. I know I can do this as a
sort, but I would like this on a seperate sheet and constantly updating.

Am I asking too much?
 
P

Pete_UK

You can use the RANK formula to give you the order, or a series of
LARGE functions with 1, 2, 3, 4 as the parameter, and then use VLOOKUP
to get the matching data.

Follow this link for a detailed explanation:

http://www.cpearson.com/excel/rank.htm

Hope this helps.

Pete
 
M

Mike H

Hi,

Not being certain how your data are laid out makes it difficult to be
precise. However, with your scores in B1 - B20 and the names in A1 - A20 put
this in C1 and drag down 4 cells. It will return the names of the top 4 scores

=OFFSET($B$1,MATCH(LARGE(B$1:B$20,ROW()),$B$1:$B$20,0)-1,-1,1,1)

I've almost certainly got your data layout incorrect but you may be able to
adapt it.

Mike
 
H

Hoytmedic

I guess I left out some details, sorry. I have the names in C2-C100. The
final score will be in Column L, Age in Column D, and the Time in Column K.
I need it to produce the top four scores from each of the three age groups
(8,10 and 12) and show me the names. Any ties would be broken by the lowest
TIME value.
 

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