Skip to main content

How to remove letters from strings/numbers/cells in Excel?

This article is talking about how to remove letters from text strings/cells/numbers in Excel. And we provide four methods to solve it by array formula, user defined function, and third-party add-in of Kutools for Excel.


Remove letters from strings/numbers/cells with array formula

We can apply an array formula to remove letters from strings/numbers/cells in Excel. Please do as follows:

1. Select a blank cell you will return the text string without letters, enter the formula =SUM(MID(0&A2,LARGE(INDEX(ISNUMBER(--MID(A2,ROW($1:$99),1))*ROW($1:$99),),ROW($1:$99))+1,1)*10^ROW($1:$99)/10) (A2 is the cell you will remove letters from) into it, and press the Ctrl + Shift + Enter keys at the same time.
doc remove letters from text 1

2. Keep selecting the cell, and then drag its Fill Handle to the range as you need. And now you will see all letters are removed from original text strings as below screenshot shown:

Notes:
(1) This array formula will remove all kinds of characters except the numeric characters. For example, the original text string is abc-859*-24test, this array formula will remove all letters and special characters (* and -) and return 85924.
(2) If there is no number in the text string, this array formula will return 0.

Batch Separate text and numbers from one cell/column into different columns/rows

Kutools for Excel enhances its Split Cells utility and supports to batch separate all text characters and numbers of one cell/column into two columns/rows.


ad split cell separate text numbers

Remove letters from strings/numbers/cells with User Defined Function

We can also add a user defined function into Excel for removing letters from strings/numbers/cells. Please do as follows:

1. Press Alt + F11 keys at the same time to open the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and then copy and paste the following code into the new opening Module window.

VBA: Remove letters from strings/numbers/cells in Excel

Function StripChar(Txt As String) As String
With CreateObject("VBScript.RegExp")
.Global = True
.Pattern = "\D"
StripChar = .Replace(Txt, "")
End With
End Function

3. Save this user defined function. Select a blank cell you will return the text string without letters, and enter the formula =StripChar(A2) (A2 is the cell that you will remove letters from) into it, and drag the Fill Handle down to the range as you need. See screenshots:

Notes:
(1) This user defined function can also remove all kinds of characters except the numeric characters. For example, the original text string is abc-859*-24test, this array formula will remove letters and special characters (* and -) and return 85924.
(2) This user defined function will return numbers stored as text strings.


Remove letters from strings/numbers/cells with EXTRACTNUMBERS function of Kutools for Excel

This method will introduce Kutools for Excel’s EXTRACTNUMBERS function to remove all letters from stings/numbers/cells easily in Excel. Please do as follows:

Kutools for Excel - Packed with over 300 essential tools for Excel. Enjoy a full-featured 30-day FREE trial with no credit card required! Download now!

1. Select a blank cell you will return the text string without letters, and click Kutools > Functions > Text > EXTRCTNUMBERS. See screenshot:

2. In the opening Function Arguments dialog box, specify the cell that you will remove letters from into the Txt box, it’s optional to type TRUE or FAlSE into the N box, and click the OK button.

Note: Typing TRUE will return numeric numbers, while typing nothing or FALSE will return numbers stored as text strings.

3. Keep selecting the cell, and drag the Fill Handle to the range as you need. And then you will see all letters are removed from original text strings. See screenshot:

Kutools for Excel - Supercharge Excel with over 300 essential tools. Enjoy a full-featured 30-day FREE trial with no credit card required! Get It Now

Notes:
(1) You can type the formula =EXTRACTNUMBERS(A2,TRUE) into selected cell directly, and then drag the Fill handle to the range as you need.
(2) This EXTRACTNUMBERS function will also remove all kinds of characters except the numeric characters.


Remove letters from strings/numbers/cells with Remove Character utility of Kutools for Excel

All above methods will remove all characters except the numeric characters. But sometimes you may want to remove only letters from text string, but remain numeric characters and others. This method will introduce Kutools for Excel’s Remove Characters utility to get it done easily in Excel.

Kutools for Excel - Packed with over 300 essential tools for Excel. Enjoy a full-featured 30-day FREE trial with no credit card required! Download now!

1. Select the cells that you will remove letters from, and click Kutools > Text > Remove Characters.

2. In the opening Remove Characters dialog box, check the Alpha option, and click the Ok button. And then you will see only letters are removed from selected cells. See screenshot:
doc remove letters from text 6
Note: If you indeed want to remove all kinds of characters except the numeric ones, you can check the Non-numeric option and click the Ok button in the Remove Characters dialog box. See screenshot:
doc remove letters from text 7

Kutools for Excel - Supercharge Excel with over 300 essential tools. Enjoy a full-featured 30-day FREE trial with no credit card required! Get It Now


Demo: remove letters from strings/numbers/cells in Excel


Kutools for Excel: Over 300 handy tools at your fingertips! Start your 30-day free trial with no feature limitations today. Download Now!

Related articles:

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (9)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Принцип работы формулы массива понял, есть вопрос насчет конкатенации (0&A2), для чего она в формуле?
Если убрать ее и блок +1 после ROW(), формула перестает работать
This comment was minimized by the moderator on the site
NOOOSSAAA!
Você não tem noção do tanto que isso me ajudou!!!
MUITO BOM!
This comment was minimized by the moderator on the site
YEAHHHHHHHHH. At last something that works! Gj!
This comment was minimized by the moderator on the site
I need to delete all text in a cell EXCEPT a specific set of words. For example, a list of fruits or vegetables in column A, and column B has a description of the vegetables, including color, and I want to remove all text in the cells of column B except for color words. Any ideas?
This comment was minimized by the moderator on the site
hi, i want to ask if theres a formula to add period on every abbreviation in one cell within a sentence?

example

825 apple rd st #5 - i want to add period on "rd" and "st" to make it formal


hope you can help me

thanks
This comment was minimized by the moderator on the site
Hi ed,
The Add Text feature of Kutools for Excel may help you solve the problem: https://www.extendoffice.com/product/kutools-for-excel/excel-add-same-text-to-multiple-cells.html
This comment was minimized by the moderator on the site
What if you want to preserve the format of the number or has decimals? i.e Apple30.01? for answer of 30.01? your vb drops the spot?
This comment was minimized by the moderator on the site
Hi Formatunknown,
In this situation, Kutools for Excel’s Remove Characters feature is recommended.
Select the cells, enable the Remove Characters feature, only check the Alpha option, and click the Ok button to remove all alpha characters, and remain numbers including the decimal places.
This comment was minimized by the moderator on the site
Thank u so much
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations