In some competitions, often see the referee site scoring situation, in order to ensure that the competition is fair, usually in all referees given the score to remove one or several of the highest and the lowest points, and then use the remaining points to get the final score of the contestants. This is easy to implement with the Trimmean function in Excel. The Trimmean function drops a certain percentage of data points from the head and tail of the dataset before averaging. Its syntax is:
Trimmean (array,percent)
Array is a range of arrays or ranges of values that need to be collated and averaged.
Percent is the proportion of data points to be dropped when calculating. For example, if percent = 0.2, in a set of 20-point points, you would remove 4 data dots (20x0.2=4): The head is removed 2, and the tail is 2. If it is in a 15-point collection, because of 15x0.2=3, the function rounds down the number of dropped data points to the nearest multiple of 2, which is 2, thus removing a maximum and a minimum value.
Example: 16 values remove the 3 maximum and 3 minimum values, and the remaining 10 digits are averaged.
If the range of values is A1:A16, use the following formula:
=trimmean (a1:a16,0.4)
Note: Because you want to remove the maximum and minimum 3 values, take percent=0.4,16x0.4=6.4 and round down to 6. The Trimmean function automatically removes the maximum 3 values and the smallest 3 values, and then averages them.