MEDIAN

Returns the median of the given numbers. The median is the number in the middle of a set of numbers; that is, half the numbers have values that are greater than the median, and half have values that are less.

Syntax

MEDIAN(number1,number2, ...)

Number1, number2, ...   are 1 to 30 numbers for which you want the median.

Remarks

Example

Col1Col2Col3Col4Col5Col6Formula Description (Result)
123456=MEDIAN([Col1],[Col2],[Col3],[Col4],[Col5]) Median of the first 5 numbers in the list (3)
123456=MEDIAN([Col1],[Col2],[Col3],[Col4],[Col5],[Col6]) Median of all the numbers, or the average of 3 and 4 (3.5)