LOTUSSCRIPT LANGUAGE
Returns the numeric value represented by a string.
Syntax
Val ( stringExpr )
Elements
stringExpr
Val returns the converted part of stringExpr as a Double.
Usage
Val strips out spaces, tabs, carriage returns, and newlines from stringExpr. It starts converting from the beginning of the string and stops when it encounters a character other than those listed for stringExpr in the preceding list.
Note If the string being evaluated is a hexidecimal number between 8000 and FFFF, both the prefix (&H) and suffix (&) must be used. Hexidecimal numbers between 0 and 7FFF may use just the prefix (&H) or both the prefix (&H) and suffix (&).
Language cross-reference
@TextToNumber function in formula language
Example See Also