Returns the specified number, rounded up (away from zero) to the specified number of digits.
Syntax Copy Code |
---|
ROUNDUP( Number n, [Integer digits = 0] ) → Number |
If digits is greater than 0, the number is rounded to the specified number of decimal places. If digits is 0, the number is rounded up to the nearest integer. If digits is less than 0, the number is rounded to the left of the decimal point. If digits is not integer, it is automatically truncated.
Formula Copy Code |
---|
=ROUNDUP(2.15,1) |
Function Reference
TRUNC Function
INT Function
ROUND Function
ROUNDDOWN Function