Syntax
ROUNDUP(<number>[;<number>])
Description
Rounds a number up toward the nearest whole number. The count is the number of digits (defaults to 0).
Examples
Column1 | ROUNDUP() returns |
---|
5.3 | 6 |
7.9345 | 8 |
Column1 | Count | ROUNDUP(<Column1>;3) returns |
---|
7.987654321 | 3 | 7.988 |