tointeger( value )
Converts a value to Integer.
Keyword | Type | Description |
---|---|---|
|
Any Type |
Value to convert. |
Integer
The value parameters also accept decimal numbers, which get rounded.
Values passed must remain within the limits of the Integer data type.
When operating on arrays, it is not necessary to use apply
with tointeger
. If multiple parameters are passed, or one parameter is an Array, tointeger
will return an Integer Array.
tointeger("3")
returns 3
tointeger("3","4")
and tointeger({"3","4"})
both return {3,4}
Feature | Compatibility | Note |
---|---|---|
Portals | Compatible | |
Offline Mobile | Compatible | |
Sync-Time Custom Record Fields | Compatible | Can be used to create a custom record field that only evaluates at sync time. |
Real-Time Custom Record Fields | Incompatible | |
Process Reports | Compatible | |
Process Events | Compatible |
tointeger() Function