Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Rounds a number up to the next integer.
Syntax
INTUP(number )
Parameters
| Name | Required/Optional | Data Type | Description |
|---|---|---|---|
| number |
Required |
Number |
The number to round up. |
Example 1
INTUP(3.2)
Returns 4.
Example 2
INTUP(-3.2)
Returns -3.
Example 3
INTUP(3)
Returns 3.