Nz

Returns non null value.

Variants

Nz(value1, value2, …, valueN)

Returns first not null value.

Parameters

value
This function can take 2 or more parameters of any data type, as long as they are all the same type.

Returns

The result is the same data type as the parameters.

Examples

Nz(text)

It returns text if text is not null. If it is null, it returns an empty string.

Parameters

text
The text value to check.

Returns

Text

Examples