Find multiple maxes on single column and match them with names

Mpho

New Member
Joined
Mar 22, 2021
Messages
1
Office Version
  1. 365
  2. 2019
  3. 2016
  4. 2013
  5. 2010
Platform
  1. Windows
Hi there.

I am new member. I have difficulties with finding Max for top ten learners out of 200 learners. In column A I have names and surnames, column B gender, column C year of birth and column D - Q I have subjects and column R I have average marks. Therefore I want to use column R to find top ten learners in order match the marks with their names. I have no clue I could only find the first Max, then I need to find the next Max but exclude the first Max.

Kind regards


Mpho.
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
MAX is just the absolute largest value in the array, for second, third or fourth largest numbers you would need to use the LARGE function, for example.
Excel Formula:
=LARGE($R$2:$R$200,2)
will find the second largest number in the range specified.
Instead of changing the number at the end each time, you could use something like
Excel Formula:
=LARGE($R$2:$R$200,SEQUENCE(10))
to create a dynamic array for the top 10. As you have listed 5 different versions of excel on your profile, I have based this on the newest one, Office 365. The SEQUENCE function does not work with older versions.
 
Upvote 0

Forum statistics

Threads
1,215,425
Messages
6,124,826
Members
449,190
Latest member
rscraig11

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