how do i average the 2 smallest number in a range of six numbers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I tried (small(a1:a6,1)+small(a1:a6,2)/2, but got an incorrect number.
Is there problem with syntax, or perhaps another to accomplish what I am
trying to achieve.

Zetstrat
 
Try:

(small(a1:a6,1)+small(a1:a6,2))/2
or
small(a1:a6,1)/2+small(a1:a6,2)/2

Regards

Trevor
 
This should do it:
=((SMALL(A1:A6,1))+(SMALL(A1:A6,2)))/2

Your formula calculates out of order. Excel always divides before it adds in
a formula, unless you group parts of the equation together with parentheses.

tj
 
zetatstrat said:
I tried (small(a1:a6,1)+small(a1:a6,2)/2, but got an incorrect number.
Is there problem with syntax, or perhaps another to accomplish what I am
trying to achieve.

Zetstrat

Thanks to everyone for their help
 
You are missing a few parentheses, but Frank and Jerry both provided more
concise formulas anyway.

tj
 

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