how to add 5 numbers dropping the high and low

B

Becky

I need the function that will add 3 cells out of 5 cells
by dropping the highest and the lowest values. For
instance if the five cells contained:
5.5 6.5 6.5 5.5 5.5
I need to drop one 6.5(high) and one 5.5(low) and come up
with a sum of 17.5. Any help appreciated.

Becky
 
C

Chip Pearson

Becky,

Try something like the following:

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

Change A1:E1 to the appropriate range.
 
H

Harlan Grove

I need the function that will add 3 cells out of 5 cells
by dropping the highest and the lowest values. For
instance if the five cells contained:
5.5 6.5 6.5 5.5 5.5
I need to drop one 6.5(high) and one 5.5(low) and come up
with a sum of 17.5. Any help appreciated.

=SUM(A1:E1)-MAX(A1:E1)-MIN(A1:E1)
 

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