Skip to the content.

Function ISNOTFOUND

TABLE OF CONTENTS

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

How do I use ISNOTFOUND?

The ISNOTFOUND function tests the lookup path to see if a record exists for the target, given the current source record.

ISNOTFOUND returns true if the lookup path is not found for the current source record, and false if the lookup path is found.

You can provide an effective date, and symbols, if required. No target field name is specified as a field is not returned.

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

(Syntax Legend)

Syntax

Function ISNOTFOUND 1

Function ISNOTFOUND 2

Function ISNOTFOUND 3

Function ISNOTFOUND 4

Rules for the syntax

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

If no effective date is specified, ISNOTFOUND uses RUNDAY( ) - see function RUNDAY

See also topic: Rules for all Logic Text

Examples: ISNOTFOUND function in ERF

Example logic text Meaning
IF ISNOTFOUND({Lookup3})
    THEN SKIP
ENDIF
Skip all input records where lookup path Lookup3 does not successfully
find a target record, and select all other records.
This example is the same as:
    SKIPIF(ISNOTFOUND({Lookup3}))

Examples: ISNOTFOUND function in ECL

Example logic text Meaning
IF ISNOTFOUND({Lookup1})
    THEN COLUMN = “PROBLEM’
    ELSE COLUMN = “ “
ENDIF
If the lookup path Lookup1 uses the current record and
does not successfully find a target record,
then set the current column to “PROBLEM”,
otherwise set the current column to blank.