Tests if a cell contains text.
ISTEXT(value)
Returns TRUE if value is or refers to text, and FALSE otherwise.
ISTEXT(“dog”)
returns TRUE.
ISTEXT(C2)
where cell C2 contains cat returns TRUE.
ISTEXT(C3)
where cell C3 contains =NA() returns FALSE, because NA() returns an error value, not text.
Customer Feedback Analysis
Imagine you are managing a customer feedback survey for a new product. You have collected data in a spreadsheet, but some customers have accidentally entered numbers or other non-text values in the "Comments" section. You need to quickly identify which cells contain actual text comments for further analysis.
Customer ID | Product Rating | Comments | ISTEXT(Comments) | ||
|---|---|---|---|---|---|
A | B | C | D | ||
1 | 101 | 5 | Great product, love the new features! | TRUE | |
2 | 102 | 4 | FALSE | ||
3 | 103 | 3 | Needs improvement on the user interface. | TRUE | |
4 | 104 | 5 | 100% satisfied | TRUE | |
5 | 105 | 2 | 45 | FALSE | |
6 | 106 | 4 | #N/A | FALSE | |
7 | 107 | 1 | This is not a comment. | TRUE |
Explanation:
PRODUCT & FEATURES
RESOURCES
Terms | Privacy | Spam Policy
© 2026 Zapof