DAX Aggregation - MAX function


Advertisements


Description

Returns the largest numeric value in a column.

Syntax

MAX (<column>)

Parameters

Sr.No. Parameter & Description
1

column

The column in which you want to find the largest numeric value.

Return Value

A decimal number.

Remarks

The following types of values in the column are considered −

  • Numbers
  • Dates

Empty cells, logical values, and text are ignored.

Example

= MAX (Sales[Sales Amount]) 

dax_functions_aggregation.htm

Advertisements