Is it possible to sum only the 10 highest or lowest in a ran

gcarson

New Member
Joined
Feb 22, 2002
Messages
1
I have a question related to a golf “league”

We have about 125 regular weekly players. We would like to be able to quickly post weekly results which only reflect the sum of the best (lowest for golf) weekly scores for both 9 and 18 hole competitions.

Is there an easy way to accomplish this in Excel?
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Easiest without code:

Row one is headings.
Row two is first record.

Hit Data-Filter-Autofilter.

From the Score column, hit the dropdown and choose Top 10. At the bottom of that column, hit the Epsilon (the funny looking E on the toolbar) and hit enter.
 
Upvote 0
On 2002-02-23 17:24, gcarson wrote:
I have a question related to a golf “league”

We have about 125 regular weekly players. We would like to be able to quickly post weekly results which only reflect the sum of the best (lowest for golf) weekly scores for both 9 and 18 hole competitions.

Is there an easy way to accomplish this in Excel?

To sum 10 smallest values, use:

=SUM(SMALL(A2:A60,{1,2,3,4,5,6,7,8,9,10}))

To sum 10 largest values, use:

=SUM(LARGE(A2:A60,{1,2,3,4,5,6,7,8,9,10}))
 
Upvote 0

Forum statistics

Threads
1,214,412
Messages
6,119,365
Members
448,888
Latest member
Arle8907

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