Space() Returns a string built from a specified number of spaces. : Space « String Functions « VBA / Excel / Access / Word






Space() Returns a string built from a specified number of spaces.

 
Sub strDemo16()
   Debug.Print ">" & Space(4) & "<"
End Sub

 

Related examples in the same category