VLOOKUP - Return the Column with the highest value

redhots4

Board Regular
Joined
Aug 30, 2004
Messages
136
Office Version
  1. 365
Platform
  1. MacOS
Suppose Column A contains the letters A-Z. The range B2:Z26 contain numbers ranging in value from 1 to 100. I want to perform a lookup against Column A and then return the highest value in the corresponding row. For example, if I do a VLOOKUP for "G" and "G" appears in Row 12, Excel should find the highest value in Row 12 and return that to me.

Can you help me figure this out?
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Suppose Column A contains the letters A-Z. The range B2:Z26 contain numbers ranging in value from 1 to 100. I want to perform a lookup against Column A and then return the highest value in the corresponding row. For example, if I do a VLOOKUP for "G" and "G" appears in Row 12, Excel should find the highest value in Row 12 and return that to me.

Can you help me figure this out?
Try this...

Book1
ABCDE
2A67961637
3B3428234
4C4962997
Sheet1

Find the max value for "B":

=MAX(INDEX(B2:E4,MATCH("B",A2:A4,0),0))
 
Upvote 0

Forum statistics

Threads
1,224,607
Messages
6,179,871
Members
452,948
Latest member
UsmanAli786

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