ROUNDUP DAX Function
The ROUNDUP 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:
• Number: A real number that you want to round up.
• NumberOfDigits: The number of digits to which we want to round. A negative value for NumberOfDigits rounds to the left of the decimal point; if NumberOfDigits is zero or is omitted, number is rounded to the nearest integer.
Example: Create a measure.
DAX
Roundup measure = ROUNDUP(5687.576,1)