ROUNDUP
Rounds a number to a certain number of decimal places, always rounding up to the next valid increment.
Sample Usage​
ROUNDUP(99.44,1)
ROUNDUP(A2)
Syntax​
ROUNDUP(value,[places])
value- The value to round toplacesnumber of places, always rounding up.places- [ OPTIONAL -0by default ] - The number of decimal places to which to round.placesmay be negative, in which casevalueis rounded at the specified number of digits to the left of the decimal point.
Notes​
ROUNDUPoperates likeROUNDexcept that it always rounds up.
See Also​
TRUNC: Truncates a number to a certain number of significant digits by omitting less significant digits.
ROUNDDOWN: The ROUNDDOWN function rounds a number to a certain number of decimal places, always rounding down to the next valid increment.
ROUND: The ROUND function rounds a number to a certain number of decimal places according to standard rules.
MROUND: Rounds one number to the nearest integer multiple of another.
INT: Rounds a number down to the nearest integer that is less than or equal to it.
FLOOR: The FLOOR function rounds a number down to the nearest integer multiple of specified significance.
CEILING: The CEILING function rounds a number up to the nearest integer multiple of specified significance.