MEDIAN Function (DAX)
|
Returns the median of numbers in a column.
To return the median of an expresssion evaluated for each row in a table, use MEDIANX Function (DAX).
MEDIAN(<column>)
Parameters
| Term | Definition |
|---|---|
| column | The column that contains the numbers for which the median is to be computed. |
A decimal number.
Only the numbers in the column are counted. Blanks, logical values, and text are ignored.
MEDIAN( Table[Column] ) is equivalent to MEDIANX( Table, Table[Column] ).
The following computes the median of a column named Age in a table named Customers:
=MEDIAN( Customers[Age] )
Community Additions
ADD
Show: