Checking function

ISNUMBER

Is this really a number?

Purpose

Ask whether a value is really a number

Returns

TRUE if the value is a number, FALSE for anything else

Syntax

=ISNUMBER(text)

ArgumentRequiredWhat goes here
textRequiredThe cell to check, usually A2.

How to use ISNUMBER

ISNUMBER answers the question a right-aligned column looks like it has already answered. A figure that arrived as text sits on the left of the cell and will not add up, and this is how you prove that is what happened.

It is the first thing to reach for when a total comes out lower than it should, or comes out as nought.

Its other use is as a companion to SEARCH: SEARCH errors when it finds nothing, so ISNUMBER around it turns "where is this word" into "is this word there at all".

Examples

Every result below is worked out by the same evaluator that marks your answers, on the sheet shown here.

Supplier import — raw.xlsxSheet1
A supplier export before anyone has cleaned it: padded names, a code buried in a reference, and amounts that arrived as text
ABCD
1ReferenceSupplier nameAmountPosted
2GL-6100-8801 brightwell paper 1500Y
3GL-6200-8802calder UTILITIES320y
4GL-6100-8803meridian freight ltd2750
5GL-6300-8804 ashgrove catering184Y
6GL-6200-8805THORNBURY print760
7GL-6100-8806Brightwell Paper1120Y
FormulaResult
=ISNUMBER(C2)The amount column arrived as text, so this is FALSE even though the cell reads 1500.FALSE
=ISNUMBER(VALUE(C2))VALUE converts it, and now it is a number.TRUE
=SUM(C2:C7)What the text column does to a total. Nothing is added, and nothing warns you.0
=ISNUMBER(SEARCH("freight",B4))The other use: SEARCH gives back a position when the word is there, and ISNUMBER turns that position into a plain yes.TRUE

Notes

  • A cell can hold text that looks exactly like a number. Widening the column will not tell you which you have; this will.
  • Dates on this site are held as text in the form 2026-10-31, so ISNUMBER is FALSE for a date.
Practise ISNUMBER in Unit 20

A reference tells you what it does. A unit makes you use it.