Syntax
| Parameter | Description |
|---|---|
| value | Parameter of the ISNONTEXT function. |
Examples
Filter for non-text
=ISNONTEXT(A1)
Validate numeric column
=IF(ISNONTEXT(B2), "OK", "Contains text")
Count non-text entries
=SUMPRODUCT(ISNONTEXT(A1:A100)*1)
Common Errors
ISNONTEXT never produces errors — it always returns TRUE or FALSE.
Tips
Empty cells are "not text," so ISNONTEXT returns TRUE for them. If you need to check for "is a number" specifically, use ISNUMBER instead.
=ISNONTEXT(A1) always equals =NOT(ISTEXT(A1)). Use whichever reads more naturally in your formula.
ISNUMBER and ISTEXT are used far more often. ISNONTEXT is mainly useful when you want to accept any non-text value (numbers, booleans, blanks) uniformly.
Try ISNONTEXT in Viztab
Import your data and use ISNONTEXT with 370+ other formulas. No signup required.
Open Viztab