MAX DAX Function

The MAX function returns the largest value in a column, or between two scalar expressions.

DAX Syntax • MAX([column])
• MAX(<expression1>, <expression2>)

The function has the following parameters:

Example: Create a new Measure.

DAX

Max 10th value= MAX([10th Marks])
MAX dax function