VALD Function
Returns an integer that has been converted from an string
VALD(expression)
Arguments
expression String - value to be converted
Remarks
The expression argument must be an string. If the string does not contain an integer value then the script will stop and report an error
Example
Dim value as string
Dim Result as integer
value = "85"
Result = VALD(value) // Result contains 85