Reads the string parameter an converts it to a numeric value. The formula stop reading on the first character, which cannot be recognize as a number or a space.
Val( String )
String | The string which should be converted into a numeric value. |
---|
The numeric value of the String.
abc := val("123.456") // Returns the value 123.456