INT DAX Function
The INT function rounds a number down to the nearest integer, and returns it.
DAX Syntax INT(number)
The parameter number specifies the number we want to round down to an integer.
Example: Create a measure. The following expression rounds the value to 1056.
DAX
INT measure = INT(1056.5678)
Example: Create a measure.
DAX
INT measure = INT(1056.35678)