Returns a string consisting of the specified number of spaces.
Space(number)
The number argument is the number of spaces you want in the string.
The Space function is useful for formatting output and clearing data in fixed-length strings.
Spc Function, String Function.
This example uses the Space function to return a string consisting of a specified number of spaces.
' Returns a string with 10 spaces.= Space ( 10 ) ' Insert 10 spaces between two strings.= "Hello" & Space ( 10 ) & "World"