LOTUSSCRIPT LANGUAGE


IsNumeric function
Example

Tests the value of an expression to determine whether it is numeric, or can be converted to a numeric value.

Syntax

IsNumeric ( expr )

Elements

expr


Return value

The IsNumeric function returns TRUE (-1) if the value of expr is a numeric value or can be converted to a numeric value. The following values are numeric:


If expr is not a numeric value and cannot be converted to a numeric value, IsNumeric returns FALSE (0). The following values are not numeric:
Usage

A common use of IsNumeric is to determine whether a Variant expression has a numeric value.

Language cross-reference

@IsNumber

Example
See Also