Return Max on Multiple Columns

mikewongbiz

New Member
Joined
Jan 25, 2015
Messages
19
Hi all, I am a newbie to Excel and haven't been able to work this out:

Name Results1 Results2 Results3 Results4
Tom 55 80 45 60
Ken 70 67 48 90
Craig 40 95 47 75

Q1: Any ideas of a formula to search for the MAX in the range B2:E4 and Return the name from A Column.

Eg. the MAX in the numbers above is 95 which is found in C4 and will return Craig.

I can achieve only with one column using Index and Match, but, not with multiple columns. Any suggestions/help much appreciated !

Thanks,
Mike
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi Mike

Welcome to Mr Excel

Maybe something like this


A
B
C
D
E
F
G
1
Name​
Results1​
Results2​
Results3​
Results4​
Formula​
2
Tom​
55​
80​
45​
60​
Craig​
3
Ken​
70​
67​
48​
90​
4
Craig​
40​
95​
47​
75​
5

Formula in G2
=INDEX($A$2:$A$4,MAX(INDEX((B2:E4=MAX(B2:E4))*(ROW(B2:E4)-ROW(B2)+1),)))

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,216,221
Messages
6,129,585
Members
449,520
Latest member
TBFrieds

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