Calculate mean excluding outliers
=TRIMMEAN(array, percent)
| Parameter | Description |
|---|---|
array |
Values to trim and average. |
percent |
The number of data points to exclude from the calculation. |
TRIMMEAN works by first excluding values from the top and bottom of a data set, then calculating mean. The number of data points is provided as a perc
=TRIMMEAN(A1:A100,0.1) // exclude 10%
=TRIMMEAN(A1:A100,10%) // exclude 10%
=TRIMMEAN(A1:A100,0.2) // exclude 20%
=TRIMMEAN(A1:A100,20%) // exclude 20%