You can also use the Format function (although, since we know we want a
String value back, I would use Format$ of the function instead).
x = 1
Format$(x) = "1" --- evaluates to True
This is documented in the Remarks section of the help file for the Format
Function...
"If you try to format a number without specifying format, Format
provides functionality similar to the Str function, although it is
internationally aware. However, positive numbers formatted as
strings using Format don't include a leading space reserved for
the sign of the value; those converted using Str retain the leading
space."
Rick