VBA/Excel/Access/Word/String Functions/Str
Версия от 16:33, 26 мая 2010; (обсуждение)
Str() Converts a number to a string.
Sub strDemo()
Debug.Print str(12)
End Sub
Use Str() function to help document your code when concatenating strings.
Sub plusDemo()
Dim zip As String
Dim zipx As String
zip = 55555
zipx = 4444
newzip = str(zip) + str(zipx)
End Sub