Formula to find average of 3 highest entries in a row?

T

TR

Suppose A1:K1 contain numbers. I want the mean of the 3 highest numbers
in the range. Is there a way to get a formula to do that? If not, VBA?

Thanks in advance.
 
J

JE McGimpsey

TR said:
Suppose A1:K1 contain numbers. I want the mean of the 3 highest numbers
in the range. Is there a way to get a formula to do that? If not, VBA?

One way:

=AVERAGE(LARGE(A1:K1,{1,2,3}))
 

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