ISTEXT

The ISTEXT function checks if a value is of type text, returning the logical value True in positive case or the logical value False in negative case.

Syntax

ISTEXT(
    value
)

Parameters
  • value: Value to evaluate.
Returned value

The ISTEXT function returns a Boolean.

Additional Information

Both a blank space and an empty text string ("") are considered texts. A Blank, no.

The result of this function matches the negation of the result of the ISNONTEXT function.

Examples

This simple example checks whether or not "a" is a text:

ISTEXT function. Example of use

This second example checks whether or not a Boolean is of type text:

ISTEXT function. Example of use

Now we check whether or not a blank space is of type text:

ISTEXT function. Example of use

Now it is checked whether an empty text string is or is not considered text:

ISTEXT function. Example of use

This example checks whether or not a Blank is a text string:

ISTEXT function. Example of use
Related functions
Category
Information
Submitted by admin on Wed, 01/02/2019 - 15:13