Total 5 highest numbers in single column

clifnote

New Member
Joined
Jan 12, 2012
Messages
4
I wish to sum the 5 highest numbers in a single column.

Sum in cell B1, B2:B25 has both positive and negative numbers

thanks in advance

Clif
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
You could also do a variation of what Piktro suggests in case you wanted more than just the top 5 (also a CSE function); the below is for the 5 largest, but if you increase 5 to a higher number, it would sum the next Nth number:

=SUM(LARGE(B2:B25,ROW(INDIRECT("1:5"))))
 
Upvote 0
You could also do a variation of what Piktro suggests in case you wanted more than just the top 5 (also a CSE function); the below is for the 5 largest, but if you increase 5 to a higher number, it would sum the next Nth number:

=SUM(LARGE(B2:B25,ROW(INDIRECT("1:5"))))

1-Upped again! Haha
 
Upvote 0

Forum statistics

Threads
1,214,804
Messages
6,121,652
Members
449,045
Latest member
Marcus05

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