Overview
Grammar | TODOUBLE(text) | Converts a text to a Double object (a double-precision floating-point number). |
Parameter 1 | Text | Text to be converted |
Notes
The function supports one parameter of any type.
Example
Formula | Result | Notes |
---|---|---|
TODOUBLE("123.21") | new Double(123.21) | |
TODOUBLE(123) | 123 | |
TODOUBLE(123.2) | 123.2 | |
TODOUBLE(123.212) | 123.21 | |
TODOUBLE("123.216") | 123.22 |