====== IsText(expression) ====== Category: Logical function \\ =====Description===== 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. \\ =====Arguments===== ^Argument^Type^Description^ |expression|Expression|Any expression that could potentially result in text.| **Return value type:** Boolean (TRUE/FALSE) \\ =====Examples===== istext('456') //Returns TRUE istext(123) //Returns FALSE istext('This is a number!') //Returns TRUE istext('') //Returns TRUE \\ ===== See also ===== * [[syntax:functions:isboolean|IsBoolean(expression)]] * [[syntax:functions:isempty|IsEmpty(expression)]] * [[syntax:functions:iserror|IsError(expression)]] * [[syntax:functions:isinteger|IsInteger(expression)]] * [[syntax:functions:isnumber|IsNumber(expression)]] * [[syntax:functions:isnumeric|IsNumeric(expression)]]