MEDIAN function


We've added a new function that returns the median of a list of numeric values. MEDIAN can be used with a single array argument or multiple numeric arguments.

MEDIAN([1, 2, 3])
MEDIAN(1, 2, 3)

For more information, see our documentation.

Colm O'Grada