Str() Converts a number to a string. : Str « String Functions « VBA / Excel / Access / Word






Str() Converts a number to a string.

 
Sub strDemo()
   Debug.Print str(12)
End Sub
        

 

Related examples in the same category

1.Use Str() function to help document your code when concatenating strings.