1.

What is IS NUMERIC clause?

Answer»

This clause is USED for checking if an item is a numeric value or not. If it is numeric - positive or NEGATIVE, TRUE will be returned. For EXAMPLE:

CHECK-NUMBER SECTION. DISPLAY 'Check if input is numeric ' INPUT-NUM IF INPUT-NUM IS NUMERIC DISPLAY 'input is numeric' ELSE DISPLAY 'input is non numeric'


Discussion

No Comment Found