MINA is a DAX function that returns the smallest value in a column, including logical values and text.
Syntax
MINA( ColumnName )
Argument | Properties | Description |
---|---|---|
ColumnName | The column for which you want to find the smallest value. |
MINA is a DAX function that returns the smallest value in a column, including logical values and text.
MINA( ColumnName )
Argument | Properties | Description |
---|---|---|
ColumnName | The column for which you want to find the smallest value. |
The smallest value.
The MINA function takes as argument a column that contains numbers, and determines the smallest value as follows:
TRUE
and FALSE
are treated as 1 if TRUE
and 0 (zero) if FALSE
.If you want to compare text values, use the MIN function.
This function is not supported for use in DirectQuery mode when used in calculated columns or row-level security (RLS) rules.
The following expression returns the minimum freight charge from the table, InternetSales.
= MINA(InternetSales[Freight])
The following expression returns the minimum value in the column, PostalCode. Because the data type of the column is text, the function does not find any values, and the formula returns zero (0).
= MINA([PostalCode])
Other functions related to MINA are:
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy