In Excel: use =ISNUMBER(value) — it returns TRUE for real numbers and FALSE for numbers stored as text, which is how you find a broken import.
Syntax
Arguments
| Argument | Description | |
|---|---|---|
value | required | The value to test. TRUE only for real numbers, including dates and times. |
Related functions
1 duplicates · 1 blank rows removed · 0 replacements
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
What this does
ISNUMBER tests whether a value is genuinely numeric. Its everyday importance is diagnostic: numbers imported from a web page or a CSV frequently arrive as text, where they look perfectly normal but are ignored by SUM, AVERAGE and every lookup that matches on a number. ISNUMBER down the column finds them instantly. It has a second, less obvious use — combined with SEARCH it becomes a contains-text test, because SEARCH returns a position when it finds something and #VALUE! when it does not. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. For “isnumber function excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected formula change, and only then apply the same setup to the full sheet. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. That is what makes a calculation you can defend to a CFO or an auditor useful in real work: repeatable, auditable, and not dependent on memory or luck.
A worked example
Auditing an imported column: =ISNUMBER(B2) filled down returns FALSE on every text-formatted number, and =COUNTIF(C2:C500, FALSE) counts them. As a contains test: =IF(ISNUMBER(SEARCH("urgent", A2)), "Flag", "") marks every row whose text mentions the word. ISNUMBER is the fastest diagnosis of the single most common data problem in spreadsheets: numbers that are not numbers. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
In Google Sheets
Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. The aim was to get you unstuck fast and leave you a little more capable than a copy-paste would. The answer is at the top, the tool proves it, and the detail above shows why it holds — so the next time a colleague asks, you can answer without reaching for search. If you take one thing from this page on “isnumber function excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.
Common mistakes
- Trusting appearance over the test — a right-aligned-looking number can still be text, and only
ISNUMBERsettles it. - Forgetting that dates and times are numbers, so
ISNUMBERreturns TRUE for them. - Using FIND instead of SEARCH in the contains idiom, which makes the test case-sensitive.
Frequently asked questions
How do I find numbers stored as text?
=ISNUMBER(A2) filled down returns FALSE for every one. Convert them with VALUE or Text to Columns.
How do I check if a cell contains specific text?
=ISNUMBER(SEARCH("word", A2)) returns TRUE when the word appears, because SEARCH returns a position on success.
Does ISNUMBER return TRUE for dates?
Yes — dates and times are stored as serial numbers.
Other ways people ask this
This guide also answers
- excel formula isnumber