Skip to the content.

Function ISFOUND

TABLE OF CONTENTS

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

How do I use ISFOUND?

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

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

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

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

(Syntax Legend)

Syntax

Function ISFOUND 1

Function ISFOUND 2

Function ISFOUND 3

Function ISFOUND 4

Rules for the syntax

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

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

See also topic: Rules for all Logic Text

Examples: ISFOUND function in ERF

Example logic text Meaning
IF ISFOUND({Lookup2})
    THEN SELECT
ENDIF
Select all input records where lookup path Lookup2 successfully
finds a target record, and skip all other records.
This example is the same as:
    SELECTIF(ISFOUND({Lookup2}))

Examples: ISFOUND function in ECL

Example logic text Meaning
IF ISFOUND({Lookup2})
    THEN COLUMN = {Lookup2}
    ELSE COLUMN = “ “
ENDIF
If the lookup path Lookup2 uses the current record to
successfully find a target record, then set the current column
to the lookup field, otherwise set the
current column to blank.