How to Separate Numbers from Text in Excel

This guide treats “separate numbers from text in excel” the way busy spreadsheet users actually want it: answer first, a live tool to prove it on your own data, then the reasoning. It is written for Excel but calls out every place Google Sheets differs, and the platform toggle at the top switches all shortcuts between Windows and Mac so nothing here assumes the keyboard you are not on.

Exact answer

In Excel: in Microsoft 365, =TEXTJOIN("",TRUE,IFERROR(MID(A2,SEQUENCE(LEN(A2)),1)*1,"")) walks the string one character at a time and keeps only the digits.

On this page7
ƒxText to Columns SplitterLive
Columns found
3

3 rows

Ada LovelaceLondon1815
Grace HopperNew York1906
Alan TuringLondon1912
Runs entirely in your browser — your data never leaves this page.
=TEXTJOIN("",TRUE,IFERROR(MID(A2,SEQUENCE(LEN(A2)),1)*1,""))
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

The formula tests each character in turn: MID with SEQUENCE splits the cell into single characters, multiplying by 1 turns a digit into a number and raises an error for anything else, IFERROR discards the errors, and TEXTJOIN glues the survivors back together. The result is text, so wrap it in VALUE when it has to be used as a number, and remember every digit in the cell is kept — a string with two separate numbers comes back as one run of digits. 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 “separate numbers from text in 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 cells 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

A2 holds "Invoice 2291 approved". The formula returns 2291 as text; =VALUE(TEXTJOIN("",TRUE,IFERROR(MID(A2,SEQUENCE(LEN(A2)),1)*1,""))) returns the number 2291. For "Order 12 of 34", the same formula returns 1234, which is the behaviour to design around rather than be surprised by. Reference numbers arrive glued to descriptions from every export in the world, and the difference between a number and text that looks like one decides whether the join downstream works at all. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.

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. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. Treat “separate numbers from text in excel” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.

Common mistakes

  • Applying the digit-walk to strings that contain several numbers and getting them silently concatenated.
  • Losing the decimal point and the minus sign: both are non-digits, so 12.50 comes back as 1250.
  • Converting a reference code such as 00427 to a number and dropping its leading zeros.
  • Trusting Flash Fill without checking the whole column — it infers a pattern from the first rows and applies it everywhere.

Frequently asked questions

What if I do not have Microsoft 365?

Replace SEQUENCE(LEN(A2)) with ROW(INDIRECT("1:"&LEN(A2))) and confirm the formula with Ctrl+Shift+Enter, or use Flash Fill.

How do I keep the decimal point?

Test for digits and the separator together, or locate the number with FIND and take a fixed-width MID rather than filtering character by character.

How do I extract the text and drop the numbers instead?

Invert the test: keep the characters where the multiplication fails, which is the same formula with IF(ISERROR(...)) around the character.

Does the result sort correctly?

Only after VALUE converts it. Text digits sort 1, 10, 2 rather than 1, 2, 10.

Other ways people ask this

People reach this page typing “how do i separate numbers from text in excel”, “how to separate text from numbers in excel”, “how to separate numbers from words in excel” and “separate numbers from text in excel”, among other phrasings; whichever wording you used, the fix above is the one you want.

Why do people search for this in so many different ways?

Because the same task has many names. “how do i separate numbers from text in excel”, “how to separate text from numbers in excel”, “how to separate numbers from words in excel” all point at the one operation explained on this page, which is why they all lead here.