Skip to content

Latest commit

 

History

History
47 lines (29 loc) · 1.18 KB

median-function-dax.md

File metadata and controls

47 lines (29 loc) · 1.18 KB
description title
Learn more about: MEDIAN
MEDIAN function (DAX) | Microsoft Docs

MEDIAN

[!INCLUDEapplies-to-measures-columns-tables-visual-calculations]

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.

Syntax

MEDIAN(<column>)  

Parameters

Term Definition
column The column that contains the numbers for which the median is to be computed.

Return value

A decimal number.

Remarks

  • Only the numbers in the column are counted. Blanks are ignored. Logical values, dates, and text are not supported.

  • MEDIAN( Table[Column] ) is equivalent to MEDIANX( Table, Table[Column] ).

  • [!INCLUDE function-not-supported-in-directquery-mode]

Example

The following computes the median of a column named Age in a table named Customers:

= MEDIAN( Customers[Age] )  

Related content

MEDIANX function