ROUNDUP DAX Function in Power BI

The ROUNDUP DAX function always rounds a number up, away from 0 (zero), and it returns a decimal number.

DAX Syntax ROUNDUP(Number, NumberOfDigits)

The function has the following parameters:

Example: Let’s create a measure. Roundup the given value to one digit from the right of the decimal point.

DAX

Roundup measure = ROUNDUP(5687.576,1)
Roundup dax function in Power BI

Roundup the given value to the nearest integer.

DAX

Roundup measure = ROUNDUP(5687.576,0)
Roundup dax function in Power BI