Str$ Function
Syntax Str[$](Num)
Group String
Description Return the string representation of Num.
Parameter Description
Num Return the string representation of this numeric value. Positive values begin with a blank. Negative values begin with a dash '-'.
See Also CStr( ), Hex$( ), Oct$( ), Val( ).
Example
'#Language
"WWB-COM"
Sub Main
Debug.Print Str$(9*9) ' 81
EndSub