DAX Function Guide

ROUNDUP
Empty image or helper icon

Sam McKay

CEO & Founder

How does the ROUNDUP work?
The ROUNDUP function (DAX) rounds a number up, away from 0 (zero).
ROUNDUP Formula Syntax

ROUNDUP(
     <number>, <num_digits>
)

How do you use the ROUNDUP?

The ROUNDUP function will always round numbers up. The number of places to round to is controlled by the num_digits argument. Positive numbers round to the right of the decimal point, negative numbers round to the left, and zero rounds to the nearest 1.

Related Blog Posts

Loading

Considerations when using the ROUNDUP?

ROUNDUP behaves like ROUND, except that it always rounds a number up.

  • If num_digits is greater than 0 (zero), then the number is rounded up to the specified number of decimal places.
  • If num_digits is 0, then the number is rounded up to the nearest integer.
  • If num_digits is less than 0, then the number is rounded up to the left of the decimal point.
Related Video Tutorials

Loading

Formula examples using the ROUNDUP

=ROUNDUP(PI(),4)

=ROUNDUP(1.3,0.2)

=ROUNDUP([Values],-1)

Related Courses

Loading