Returns a string consisting of
a given number of blank spaces.
Parameters
Parameter
|
Description
|
n
|
The number of blank spaces.
|
ExamplesThe
following expressions are examples that use the Space function:
Expression
|
Returns
|
Space(5)
|
" "
|
Space(Max(Amount[*]))
|
A blank string with as many characters as
the value of the largest occurrence of Amount.
See
also Max.
|
Concat("Tony", Space(1), "Blue")
|
Tony Blue
|
|
|
|