How to Add ONLY Certain Amounts in a Column

meppwc

Well-known Member
Joined
May 16, 2003
Messages
607
Office Version
  1. 365
Platform
  1. Windows
Is there a way of adding together only 35 cells from a column that have the highest amounts in the entire column?
My column D has values from 0 to 100,000. There are over 100 values (cells) in all. I want to add together the "top 35" cells.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
try this out

=SUM(LARGE(D:D,{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35}))

It is an array formula so remember to do CTRL + SHIFT + ENTER when entering the formula
 
Last edited:
Upvote 0

Excel 2010
EF
2383,250.00
3383,250.00
3b
Cell Formulas
RangeFormula
F2=SUMPRODUCT(LARGE(D1:D100,ROW(1:35)))
F3=SUMPRODUCT(LARGE(D1:D100,rSer))
Named Ranges
NameRefers ToCells
rSer=ROW(!$1:$35)


Edit the range to a reasonable number of rows.

If it is possible that rows will be inserted, use the named range or edit the row part.
 
Last edited:
Upvote 0
You can shorten that a bit like this

=SUM(LARGE(D:D,ROW(1:35)))

And make it not require CSE entry buy changing SUM to SUMPRODUCT (it's still an array formula, just doesn't require CSE)
 
Upvote 0

Forum statistics

Threads
1,215,523
Messages
6,125,323
Members
449,218
Latest member
Excel Master

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