Overview
Grammar | TOINTEGER(text) | Converts a text to an Integer object. |
Parameter 1 | Text | Text to be converted |
Notes
The function supports one parameter of any type.
Example
Formula | Result | Notes |
---|---|---|
TOINTEGER("123") | new Integer(123) | |
TOINTEGER(1.1) | 1 | |
TOINTEGER(1.9) | 1 |