ISNUMERIC
Tests if a string contains all numeric characters
Example Usage
ISNUMERIC("ABC123") -> false
ISNUMERIC("123") -> true
Overview
Function signature
ISNUMERIC(value)
Category
Logical
Return data type
bool
Arguments
Name | DataType | List Options | Description |
---|---|---|---|
value | string | The string to test for all numeric characters |