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