Category: Logical function
This function returns TRUE if the result of expression is text. Otherwise, it returns FALSE.
Text cells with empty contents (e.g., ' ') will return TRUE as well.
Argument | Type | Description |
---|---|---|
expression | Expression | Any expression that could potentially result in text. |
Return value type: Boolean (TRUE/FALSE)
istext('456') //Returns TRUE
istext(123) //Returns FALSE
istext('This is a number!') //Returns TRUE
istext('') //Returns TRUE