Question about returning some values from highest to lowest

C

Cory from Eugene

I have a groupe of numbers, and all I want to do is be able to return the
highest of the group, then the second highest, third highest... and so on. Im
sure its an easy answer, but I just dont know how to do it.

Can anyone help me?

Thanks,
Cory

(e-mail address removed)
 
T

T. Valko

Try this:

With your numbers in the range A1:A10, enter this formula in C1 and copy
down as needed:

=LARGE(A$1:A$10,ROWS(C$1:C1))
 
C

Cory from Eugene

but what about the 2nd highest value and so on?

T. Valko said:
Try this:

With your numbers in the range A1:A10, enter this formula in C1 and copy
down as needed:

=LARGE(A$1:A$10,ROWS(C$1:C1))
 
T

T. Valko

enter this formula in C1 and copy down as needed:
=LARGE(A$1:A$10,ROWS(C$1:C1))

Did you try it? The key phrase is *copy down as needed*.

As you drag copy down it will return the nth largest value. The ROWS()
function will increment like this:

=LARGE(A$1:A$10,ROWS(C$1:C1)) = large 1
=LARGE(A$1:A$10,ROWS(C$1:C2)) = large 2
=LARGE(A$1:A$10,ROWS(C$1:C3)) = large 3
=LARGE(A$1:A$10,ROWS(C$1:C4)) = large 4
etc
etc
 

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