Finding top [5] values in list

A

AndyE

Hi - I have a list of values which changes from day to day, but I want Excel
to be able to perform calculations based on the top 5 (and bottom 5) values
in the list. Is there any set of functions that will let me do this?

Thanks!
 
A

AndyE

Thanks - this looks great (and simple for once!). Can I use the OFFSET
function to return a value in column B if the search is applied to column A?
E.g. column B is names, column A is weights, and I want to show the weight of
the second and third heaviest people?
 
J

JE McGimpsey

If they are all of different weights, you can use:

C1: =VLOOKUP(LARGE(A:A,1),A:B,2,FALSE)
C2: =VLOOKUP(LARGE(A:A,2),A:B,2,FALSE)
C3: =VLOOKUP(LARGE(A:A,3),A:B,2,FALSE)
 

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