Max Function Refer To 1st Cell in Row

jdo23

New Member
Joined
Feb 15, 2012
Messages
2
I am trying to create a formula that will display the 'name' from column A that corresponds with the row of the value resulting from Max function for range in column B. To illustrate the desired results:

On 'sheet 1' I have the max function determine that cell B5 has the highest number for column B. I want the value in A5 (name associated with the row) to display on Cell C3 of 'Sheet 2'

If that make sense, can someone help?
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
I am trying to create a formula that will display the 'name' from column A that corresponds with the row of the value resulting from Max function for range in column B. To illustrate the desired results:

On 'sheet 1' I have the max function determine that cell B5 has the highest number for column B. I want the value in A5 (name associated with the row) to display on Cell C3 of 'Sheet 2'

If that make sense, can someone help?
Try this...

Book1
ABCDE
2Name133_95Name2
3Name295___
4Name324___
5Name426___
6Name546___
7Name689___
8Name728___
9Name821___
10Name974___
Sheet1

This formula entered in D2:

=MAX(B2:B10)

This formula entered in E2:

=INDEX(A2:A10,MATCH(D2,B2:B10,0))
 
Upvote 0

Forum statistics

Threads
1,214,922
Messages
6,122,281
Members
449,075
Latest member
staticfluids

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