Str$ Function
SyntaxGroupStr[$](Num)
StringDescription
Return the string representation of Num.
See Also
Parameters Description Num Return the string representation of this numeric value. Positive values begin with a blank. Negative values begin with a dash '-'.
CStr( ), Hex$( ), Oct$( ), Val( )
Sub Main Debug.Print Str$(9*9) ' 81 End Sub