How to add the 4(say) largest numbers in a column

S

Slimer

I am working on a problem where i need to add up the 4
largest numbers from a column of 10 numbers, this has to
be repeated for over 200 columns so i don't want to have
to sort each column into order individually and then sum
the top 4.

Is there a quick way of performing this simple operation?
 
R

Ron Rosenfeld

I am working on a problem where i need to add up the 4
largest numbers from a column of 10 numbers, this has to
be repeated for over 200 columns so i don't want to have
to sort each column into order individually and then sum
the top 4.

Is there a quick way of performing this simple operation?

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



--ron
 
C

CLR

=LARGE(yourrange,1)+LARGE(yourrange,2)+LARGE(yourrange,3)+LARGE(yourrange,4)

Vaya con Dios,
Chuck, CABGx3
 

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

Top