ROUNDUP
Rounds a number up, away from zero, to a specified number of digits.
| Category | Math |
| Syntax | ROUNDUP(number, num_digits) |
Parameters
| Parameter | Required | Description |
|---|---|---|
number | Required | Any real number you want to round up. |
num_digits | Required | The number of digits to which you want to round. |
Example
ROUNDUP(3.14, 1) // → 3.2
Auto-generated from the EngCanvas function registry.