Number Functions
Get Float and Int Values of a Variable
- FLOATVAL
Get float value of a variable
FLOATVAL("10.33")Try this examplestring (string)The string to be parsed - INTVAL
Get the integer value of a variable
INTVAL("10.33")Try this examplestring (string)The string to be parsed - IS_NUMERIC
Finds whether a variable is a number or a numeric string
IS_NUMERIC("42")Try this examplevar (mixed)The variable being evaluated.