How do I exclude the HIGH and LOW values in the =AVERAGE function

T

T. Valko

One way:

=TRIMMEAN(A1:A10,2/COUNT(A1:A10))

Note that will exclude *one instance each* of the min and max.

10
10
20
30
40
40

The above formula will average 10,20,30,40 = 25
 
F

Fred Smith

Do you want something like this:
=(sum(a1:a100)-max(a1:a100)-min(a1:a100))/(count(a1:a100)-2)
?

Regards.
Fred
 

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