help with an average formula

G

gnasher

I need a formula to find the average of the best 8 scores of anywhere
between 8 and 15 scores

Thanks in advance
 
T

T. Valko

I'm assuming the best scores are the highest scores.

=IF(COUNT(A1:A15)<8,"insufficient
data",AVERAGE(LARGE(A1:A15,{1,2,3,4,5,6,7,8})))

If there will *always* be at least 8 values then:

=AVERAGE(LARGE(A1:A15,{1,2,3,4,5,6,7,8}))
 

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