MIN is a DAX function that returns the smallest numeric value or smallest string in a column, or the smaller value between two scalar expressions.
Syntax
MIN(
ColumnNameOrScalar1,
Scalar2
)
| Argument | Properties | Description |
|---|---|---|
| ColumnNameOrScalar1 | The column in which you want to find the smallest numeric value or smallest string in a column, or the first scalar expression to compare. | |
| Scalar2 | Optional | The second number to compare. |