Find lowest 5 values in a list of 10 - 150 lists involved

G

Guest

I am trying to find an easy way to determine the lowest 5 values in a list of 10 and add those values together. There are 150 lists involved in which the determination is to be made. I will then compare the sums of the 150 lists and determine the lowest 10 sums. What is the easiest way to do this using Excel?
 
F

Frank Kabel

Hi
use SMALL
for this

if you want to sum the smalles 5 values try the formula
=SUM(SMALL(A1:A100,{1,2,3,4,5}))
 
S

Soo Cheon Jheong

Hi,

Try the following formula(array formula) for non-zero values:

=SUM(SMALL(IF(A1:A150<>0,A1:A150,""),{1,2,3,4,5}))

--
Regards,
Soo Cheon Jheong
_ _
^¢¯^
--




JoeB said:
I am trying to find an easy way to determine the lowest 5 values in a list
of 10 and add those values together. There are 150 lists involved in which
the determination is to be made. I will then compare the sums of the 150
lists and determine the lowest 10 sums. What is the easiest way to do this
using Excel?
 

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