Purpose
Returns a string representation of a number (for any valid numeric expression).
Syntax
Str (NumericExpression)
Example
Sub Main()
Dim cost As String
Dim output As String
cost = Str(5000)
output = "the total cost is: " & cost
Print output
End Sub
|