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:
- column: The column in which we want to find the largest value.
- expression: Any DAX expression which returns a single value.
Example: Create a new Measure.
DAX
Max 10th value= MAX([10th Marks])