ISTEXT Function

ISTEXT Function

ISTEXT Function

Return TRUE when a value is text.

ExcelClash Team
PUBLISHED

Summary

ISTEXT returns TRUE when a value is text. That includes words, labels, text-formatted numbers, and empty strings like "".

It returns FALSE for real numbers, dates, logical values, errors, and truly blank cells. That difference is what makes it useful in data cleanup and lookup troubleshooting.

Purpose

Check text values

Returns TRUE only when Excel sees the value as text.

Return Value

TRUE or FALSE

TRUE means text. FALSE means not text.

Syntax

=ISTEXT(value)

You can test a cell reference, a typed value, or a formula result.

Arguments

  • value - [required] The value you want to test.

ISTEXT vs Other Functions

Function Main job Result for ""
ISTEXT Checks for text TRUE
ISNONTEXT Checks for anything except text FALSE
ISNUMBER Checks for numbers FALSE
ISBLANK Checks for true emptiness FALSE

Using ISTEXT

This function is useful when a field is supposed to hold text and you want to enforce that, or when a value should not be text and you need to catch formatting problems. One common example is numbers stored as text, which can quietly break lookups and math.

The empty-string case is worth remembering. A formula result of "" still counts as text here, even though the cell can look empty on screen.

Example 1 - Check a normal text value

This is the basic use.

=ISTEXT(A1)
Check Answer
Challenge #1
Target: Sheet1!F1
Text Check

Check whether A1 is text. Formula: =ISTEXT(A1).

Example 2 - Confirm a blank cell is not text

A truly empty cell returns FALSE.

=ISTEXT(B2)
Check Answer
Challenge #2
Target: Sheet1!F2
Blank Is Not Text

Check whether a truly blank cell is text. Formula: =ISTEXT(B2).

Example 3 - Catch the empty-string case

An empty string still counts as text.

=ISTEXT("") // Returns TRUE.
Check Answer
Challenge #3
Target: Sheet1!F3
Empty String Is Text

Check whether "" counts as text. Formula: =ISTEXT("").

Example 4 - Find a text-formatted number

This is a common lookup and import issue.

=ISTEXT(C3)
Check Answer
Challenge #4
Target: Sheet1!F4
Number Stored as Text

Check whether C3 is text. Formula: =ISTEXT(C3).

Conclusion Recap

  • Main job: ISTEXT checks whether a value is text.
  • Important nuance: "" counts as text.
  • Blank cells: Truly blank cells return FALSE.
  • Good use: Catch text-formatted numbers and text-only fields.
Tactical Arena
Select Scenario:
Share ISTEXT Function!

Tell your friends about this post

Discussion

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster.

© 2026 ExcelClash, Inc. All rights reserved.