need formula help

  • Thread starter Thread starter jschott
  • Start date Start date
J

jschott

I am trying to set up a spreadsheet that will add 15 numbers in
column. Sounds simple right! The trick is I actually only want to ad
12 of those numbers. Is it possible to set a formula that will add u
the 12 largest numbers in the column. Keeping in mind the 12 larges
numbers will vary which row they appear in in each column. It seem
like this should be a possiblity but I can't seem to figure it ou...Ca
anyone else??
 
Jschott,

You can use the LARGE formula in combination with the SUM formula

=SUM(LARGE(A1:A15;{1,2,3,4,5,6,7,8,9,10,11,12}))

Dan E
 
try this. It must be ARRAY entered or edited with control+Shift+enter

=SUM(LARGE(D1:D100,ROW(1:12)))
 
=SUMPRODUCT(LARGE(A1:A15,ROW(INDIRECT("1:12"))))

or

=SUM(A1:A15)-SUM(SMALL(A1:A15,{1,2,3}))

the latter entered with ctrl + shift & enter
 
Peo Sjoblom said:
=SUMPRODUCT(LARGE(A1:A15,ROW(INDIRECT("1:12"))))

or

=SUM(A1:A15)-SUM(SMALL(A1:A15,{1,2,3}))

the latter entered with ctrl + shift & enter

Your second formula doesn't need to be array entered...

Dan E
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top