Null

Returns the null value. The null value means no value.

Definition

Null()

Parameters

None

Examples

The following expressions are examples that use the Null function:

Expression

Returns

Null()

null

Null() + 5

5

Quantity = Null()

Assigns null to the object Quantity.

Concat("ABC", Null(), "DEF")

ABCDEF

See also Concat.

// Ethnio survey code removed