Calculating averages (olympic style)

G

Guest

good morning,

i have a worksheet and i need to calculate averages with a catch. i know
how to do basic averages and stuff. i need a formula to calculate the
following example:

data is in row 1. column a, b, c, d, e and f all have values entered in
them. i need the formula to drop the lowest value and give an average for
the remaining 5 only.

thank you,

jat jaswal
 
G

Guest

If there will ALWAYS be at least 5 numbers in A1:H1
Then....try this:
=AVERAGE(INDEX(LARGE(A1:F1,{1,2,3,4,5}),0))

Otherwise:
=SUM(A1:F1,-MIN(A1:F1)*(COUNT(A1:F1)>5))/(MIN(COUNT(A1:F1),5))

Does that help?
***********
Regards,
Ron

XL2002, WinXP
 
B

Bernd

Hello,

Sorry, that does not work if min value appears more than once.

I suggest
=(SUM(A1:F1)-MIN(A1:F1))/4

Regards,
Bernd
 

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

Similar Threads

averages for cells 6
#DIV/0! ERROR 2
AVERAGEIF 14
ASAP - need help with formula! 7
Averages 16
MVP HELP NEEDED ! 5
New Twist on Old Question-Averages 4
Averaging, but excluding zeros 5

Top