Hi Mark,
TRIMMEAN() should work.
To get the average from A:A but excluding the largest and smallest outlier:
=TRIMMEAN(A:A,(COUNT(A:A)-2)/COUNT(A:A))
To get the average from A:A but excluding the 2 largest and 2 smallest outliers:
=TRIMMEAN(A:A,(COUNT(A:A)-4)/COUNT(A:A))
|