Largest Value - Simple Question

aab2003

New Member
Joined
May 20, 2003
Messages
2
If I have a column of names that corresponds to a column of numbers, i.e.

a 1
b 2
c 3
d 4
e 5
f 6

I know that to find the largest value of the number column the formula is =large(range, kth largest value). But what would be the formula for the 5 largest values in the column? And also, say I want the largest value in the above example, how can I get the letter "f" displayed next to the value "6" that the formula would give me?

Many Thanks. Please respond or e-mail me directly. aab2003@columbia.edu
 

Excel Facts

Difference between two dates
Secret function! Use =DATEDIF(A2,B2,"Y")&" years"&=DATEDIF(A2,B2,"YM")&" months"&=DATEDIF(A2,B2,"MD")&" days"
aab2003 said:
If I have a column of names that corresponds to a column of numbers, i.e.

a 1
b 2
c 3
d 4
e 5
f 6

I know that to find the largest value of the number column the formula is =large(range, kth largest value). But what would be the formula for the 5 largest values in the column?

LARGE(B1:B6,{1,2,3,4,5})

would pick out 5 largest values from B1:B6.

And also, say I want the largest value in the above example, how can I get the letter "f" displayed next to the value "6" that the formula would give me?

=INDEX(A1:A6,MATCH(MAX(B1:B6),B1:B6,0))
 
Upvote 0

Forum statistics

Threads
1,221,701
Messages
6,161,381
Members
451,700
Latest member
Eccymarge

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top