MINA DAX Function in Power BI
In this exercise, we will learn about the MINA function in DAX. The MINA DAX function returns the smallest value in a column.
DAX Syntax MINA([column])
The parameter column is the column for which we want to find the minimum value.
Example: Suppose we want to find the minimum value in the column 10th Marks.
DAX
MINA value = MINA(Sheet1[10th Marks])
The output of the above code is shown below:
