MIN DAX Function
The MIN function returns the smallest value in a column, or between two scalar expressions.
DAX Syntax • MIN([column])
• MIN(<expression1>, <expression2>)
The function has the following parameters:
• column: The column in which you want to find the smallest value.
• expression: Any DAX expression which returns a single value.
Example: Suppose we want to find the minimum value in the column 10th Marks.
DAX
Min 10th value = MIN([10th Marks])