ROUND DAX Function

The ROUND DAX function rounds a number to the specified number of digits, and returns it.

DAX Syntax ROUND(Number, NumberOfDigits)

The function has the following parameters:

Example 1: The following formula rounds 11.576 up, to two decimal places. The expected result is 11.58.

DAX

Round measure = ROUND(11.576,2)
ROUND dax function

Example 2: The following formula rounds 11.576 to one decimal place to the left of the decimal point. The expected result is 10.

DAX

Round measure = ROUND(11.576,-1)
ROUND dax function