cant create a formula

  • Thread starter Thread starter mikhal
  • Start date Start date
M

mikhal

Hello there,
i have a list of values in a column, i want to just add up just the highest
4 values.
so for
1; 1; 2; 2 ;2; 3; 5;
i get the value 12..but i cant see to get excel to do this!
 
Mikhal,

=SUM(LARGE(A1:A7,{1,2,3,4}))

A1:A7 is your values.


Cheers,

Steve
 
=SUM(LARGE(A1:A7,{1;2;3;4})), Array-entered, that is, instead of just ENTER,
hit CTRL+SHIFT+ENTER
 
Hello there,
i have a list of values in a column, i want to just add up just the highest
4 values.
so for
1; 1; 2; 2 ;2; 3; 5;
i get the value 12..but i cant see to get excel to do this!

where "rng" is the range where your numbers are stored.

=SUM(LARGE(rng,{1,2,3,4}))


--ron
 
Why did I think it needed to be array-entered?

Well, it is an array formula. Just happens to be one that you don't need to
array-enter.


--ron
 
(I hope) I'll never stop learning
I'll get back to the books for this
Thanks!
 

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