Skip to the content.

Function ISNOTNUMERIC

TABLE OF CONTENTS

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

How do I use ISNOTNUMERIC?

The ISNOTNUMERIC function returns true if the specified field is not a numeric value, and false if the value is numeric.

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

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

(Syntax Legend)

Syntax

Function ISNOTNUMERIC 1

Function ISNOTNUMERIC 2

Function ISNOTNUMERIC 3

Function ISNOTNUMERIC 4

Function ISNOTNUMERIC 5

Rules for the syntax

ISNOTNUMERIC 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: ISNOTNUMERIC function in ERF

Example logic text Meaning
IF ISNOTNUMERIC({field7})
    THEN SKIP
ENDIF
Skip all input records where field7 is not numeric, and select all other records.
This example is the same as:
    SKIPIF(ISNOTNUMERIC({field7}))

Examples: ISNOTNUMERIC function in ECL

Example logic text Meaning
IF ISNOTNUMERIC({field8})
    THEN COLUMN = 0
    ELSE COLUMN = {field8}
ENDIF
If field8 for the current record is not numeric,
then set the current column to zero,
otherwise set the current column to field8.