Formula Help - return maximum value for a person

stuartw

Board Regular
Joined
Dec 5, 2007
Messages
237
Good afternoon everyone.

I'm hoping for some help on a formula. I have a list of users where I want to return the maximum score in a given table for a given person. Example:

Name Score MaximumScore
Stu 4 7
Stu 7 7
Stu 3 7
Lee 5 9
Lee 9 9
Lee 8 9

The formula I want should reside in the "maximumscore" column (column C) and the desired results are above. As you can see I need the highest score by that person returning in the 3rd column. I got it working perfectly using the MAXIFS function, but this is not an option as it is not available in my clients version of excel (2010 i believe).

Can anyone help?

Thanks in advance
Stuart
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Hi,

Formula for C2:

Code:
{=MAX(IF($A$1:$A$6=$A1,$B$1:$B$6))}

Entered with Ctrl+Shift+Enter. If entered correctly, Excel will surround with curly braces {}.
Note: Do not try and enter the {} manually yourself
 
Upvote 0
A non array formula ( needs some twisting if ranges don't start on row1)
=INDEX($B$1:$B$6,SUMPRODUCT(MAX(($A$1:$A$6=$A1)*ROW($A$1:$A$6))))
 
Upvote 0

Forum statistics

Threads
1,223,730
Messages
6,174,169
Members
452,548
Latest member
Enice Anaelle

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