VAL$
The VAL$ function returns the string formed by enclosing a number in
quotes.
Syntax
VAL$(N)
Parameters
N A numeric expression that is to be evaluated. This can
be of any numeric type.
Examples
10 A$ = VAL$(12) !A$ = "12"
20 B$ = VAL$(3.45) !B$ = "3.45"