Skip to the content.

Function ISNULL

TABLE OF CONTENTS

  1. How do I use ISNULL?
  2. Syntax
  3. Rules for the syntax
  4. Examples: ISNULL function in ERF
  5. Examples: ISNULL function in ECL

How do I use ISNULL?

The ISNULL function checks the specified field for null values. If it is all null values, then ISNULL returns true. If it is not all null values, ISNULL returns false.

The field can be a source field or a field from a lookup.

ISNULL can only be used in Extract Record Filter (ERF) and Extract Column Logic (ECL) text.

(Syntax Legend)

Syntax

Function ISNULL 1

Function ISNULL 2

Function ISNULL 3

Function ISNULL 4

Function ISNULL 5

Rules for the syntax

ISNULL can only be used in Extract Record Filter (ERF) and Extract Column Logic (ECL) text.

If this functions checks a lookup, and no effective date is specified, the lookup uses RUNDAY( ) - see topic: Syntax - function RUNDAY

See also topic: Rules for all Logic Text

Examples: ISNULL function in ERF

Example logic text Meaning
IF ISNULL({field1})
    THEN SKIP
ENDIF
Skip all input records where field1 contains null values,
and select all other records.
This example is the same as:
    SKIPIF(ISNULL({field1}))

Examples: ISNULL function in ECL

Example logic text Meaning
IF ISNULL({field2})
    THEN COLUMN = “EMPTY”
    ELSE COLUMN = {field2}
ENDIF
If field2 for the current record contains null values,
then set the current column to “EMPTY”,
otherwise set the current column to field2.