Can I do this??

  • Thread starter Thread starter Skip
  • Start date Start date
S

Skip

Excel 2003.

I have a column of 11 numbers.
I would like to throw out the two highest,
the two lowest, and get an average of the
remaining 7.
Any help is greatly appreciated.
Thanks Skip
 
One way:
=TRIMMEAN(A1:A11,4/11)
or
=(sum(a1:a11)-sum(large(a1:a11,{1,2}))-sum(small(a1:a11,{1,2})))/7
 
I would like to throw out the two highest,
the two lowest, and get an average...

Hi. I like to think of it as throwing out '4 of the '11 numbers...

=TRIMMEAN(A1:A11,4/11)
 

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