Function ISNUMERIC
TABLE OF CONTENTS
- How do I use ISNUMERIC?
- Syntax
- Rules for the syntax
- Examples: ISNUMERIC function in ERF
- Examples: ISNUMERIC function in ECL
How do I use ISNUMERIC?
The ISNUMERIC function returns true if the specified field has a numeric value, and false if the value is anything else.
The field can be a source field or a field from a lookup.
ISNUMERIC can only be used in Extract Record Filter (ERF) and Extract Column Logic (ECL) text.
Syntax
Rules for the syntax
ISNUMERIC 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: ISNUMERIC function in ERF
Example logic text | Meaning |
---|---|
IF ISNUMERIC({field5}) THEN SELECT ENDIF |
Select all input records where field5 is numeric, and skip all other records. This example is the same as: SELECTIF(ISNUMERIC({field5})) |
Examples: ISNUMERIC function in ECL
Example logic text | Meaning |
---|---|
IF ISNUMERIC({field6}) THEN COLUMN = {field6} * 100 ELSE COLUMN = 0 ENDIF |
If field6 for the current record is numeric, then set the current column to field6 times 100, otherwise set the current column to zero. |