Skip to content
Excel

ISTEXT function in Excel

Returns TRUE if the value is text

=ISTEXT(value)

ISTEXT syntax and parameters

One argument, one required.

  • valueanyRequired

    The value that you want tested. The value argument can be a blank (empty cell), error, logical value, text, number, or reference value, or a name referring to any of these.

ISTEXT examples

Formulas you'll actually reuse.

  1. Flag an amount stored as text — it won't sum:

    =ISTEXT(C2)

    ResultFALSE

  2. How many amounts in the column are text:

    =SUMPRODUCT(--ISTEXT(C2:C200))

    Result3

ISTEXT in Google Sheets

Same name — your formula ports as-is.

Try ISTEXT in the playground

Edit the example — nothing to install.

Preloaded with the ISTEXT formula from Example 1 — change anything and watch it respond.

Loading the editor…