Space

Returns a string consisting of a given number of blank spaces.

Syntax

Space(n )

Parameters

Parameter

Description

n

The number of blank spaces.

Examples

The 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

// Ethnio survey code removed