How do I remove numbers from columns in Excel?
Emma Payne
Published Jan 10, 2026
Select a blank cell that you will return the text string without numbers, enter the formula =RemoveNumbers(A2) (A2 is the cell you will remove numbers from), and then drag the Fill Handle down to the range as you need.
How do I remove all text from a cell in Excel and keep numbers?
Select a blank cell, enter formula =OnlyNums(A2) into the Formula Bar, and then press the Enter key to get the result. Keep selecting the result cell, drag its Fill Handle down to get all results.
How do I remove digits from a column?
How to remove the last four digits in Excel
- Enter the data that you wish to trim the last digits.
- Locate the cell where you want your result to be displayed. Click inside the cell.
- The next step is to enter the formula =LEFT(A1, LEN(A1)-1) in the output cell. ...
- Hit the enter key, and your result will show up immediately.
How do you take numbers out of cells?
Select all cells with the source strings. On the Extract tool's pane, select the Extract numbers radio button. Depending on whether you want the results to be formulas or values, select the Insert as formula box or leave it unselected (default).
How do I turn off numbering in Excel?
By placing an Apostrophe ( ' ) preceding the number, you will prevent Excel from reformatting the number and display the number exactly how you have it entered.
31 related questions foundHow do I remove the first 2 numbers from a cell in Excel?
The “YY” part of the formula is the cell location, “1” indicates the first character in the cell, “X” is the number of characters to remove, and “” indicates the replacement value. So if you wanted to remove the first two characters in cell A1, then the formula would be =REPLACE(A1, 1, 2, “”).
How do I separate numbers and numbers in Excel?
Split text and numbers
- Generic formula. =MIN(FIND({0,1,2,3,4,5,6,7,8,9},A1&"0123456789"))
- To separate text and numbers, you can use a formula based on the FIND function, the MIN function, and the LEN function with the LEFT or RIGHT function, depending on whether you want to extract the text or the number. ...
- Overview.
How do I extract numbers from alphanumeric in Excel?
Easily extract numbers from mixed alphanumeric text strings with Kutools for Excel
- Click Kutools > Text > Extract Text to enable the feature.
- In the Extract Text dialog box, please do the below settings. ...
- In the Extract Text dialog box, select a blank cell to output the extracted text, and then click OK.
How do I extract multiple numbers from a cell in Excel?
A way to do this is:
- Select all your data - assuming it is in a string all the time - which means one cell has one row with ID&RXN nos. ...
- Go to the Data tab, Text to columns.
- Choose Delimited >> Next >> choose Space here, in Other , type a colon( : ) >> Finish.
How do I remove the first digit of a column in Excel?
Combine RIGHT and LEN to Remove the First Character from the Value. Using a combination of RIGHT and LEN is the most suitable way to remove the first character from a cell or from a text string. This formula simply skips the first character from the text provided and returns the rest of the characters.
How do I trim the first two digits in Excel?
1. Remove first N characters with formulas
- >> Combine RIGHT and LEN function to remove first N characters.
- Example: Remove first 2 characters from string in Cell A2, copy and paste the formula. ...
- >> REPLACE function to remove first N characters.
How do I get rid of 2 digits left in Excel?
1. Using the REPLACE Function to Remove Characters from Left
- Type the following formula in Cell D5. =REPLACE(B5,1,C5,"")
- Then, press Enter. It will remove the character you want to remove from the left.
- After that, drag the Fill Handle over the range of cells D6:D9.
How do I remove numbers and text in Excel?
1. Select range of cells, and check Non-alphanumeric option to remove everything and keep text and numbers from selected cells. 2. Then click Remove.
How do I remove text from columns in Excel?
Delete texts before or after specific character by Find and Replace in Excel
- Select the cells you will remove texts before or after a specific character, press Ctrl + H keys to open the Find and Replace dialog.
- Keep the Replace with text box empty, and then click the Replace All button.
How do I extract the last 4 digits in Excel?
Show only the last 4 digits of ssn with formula
1. Select a blank cell, enter formula =RIGHT(A2,4) into the Formula Bar, and then press the Enter key.
What is an Xlookup in Excel?
The XLOOKUP function searches a range or an array, and then returns the item corresponding to the first match it finds. If no match exists, then XLOOKUP can return the closest (approximate) match.
How do I separate a string of numbers in Excel?
Split numbers to separate columns with Text to Columns
- Select the number cells, and click Data > Text to Columns.
- In the step 1 of the Convert Text to Columns Wizard, check Fixed width, see screenshot:
- Click Next to go to step 2 of the Wizard, and click at the positions you want to create the break line.
How do you remove only numbers from a cell in Excel?
Select a blank cell that you will return the text string without numbers, enter the formula =RemoveNumbers(A2) (A2 is the cell you will remove numbers from), and then drag the Fill Handle down to the range as you need.
How do I separate numbers from text in sheets?
Select the text or column, then click the Data menu and select Split text to columns... Google Sheets will open a small menu beside your text where you can select to split by comma, space, semicolon, period, or custom character. Select the delimiter your text uses, and Google Sheets will automatically split your text.
How do I extract numbers from a string?
Extract Numbers from String in Excel (using VBA)
Since we have done all the heavy lifting in the code itself, all you need to do is use the formula =GetNumeric(A2). This will instantly give you only the numeric part of the string. Note that since the workbook now has VBA code in it, you need to save it with .
How do I separate numbers in Excel with commas?
Text to Columns
- Highlight the column that contains your list.
- Go to Data > Text to Columns.
- Choose Delimited. Click Next.
- Choose Comma. Click Next.
- Choose General or Text, whichever you prefer.
- Leave Destination as is, or choose another column. Click Finish.
How do I remove the first 3 numbers in Excel?
=RIGHT(B4,LEN(B4)-3)
Here, string_cell is B4 from where we will remove 3 characters. LEN(B4)-3 is used as the num_chars. The LEN function will make sure to remove the first 3 characters from the cell.
How do I remove the first 5 numbers in Excel?
- Copy and paste the following formula =RIGHT(A1, LEN(A1)-5) in an empty cell.
- Click enter.
- The word level contains 5 characters and they have all been eliminated.
How do you remove a certain number of characters from left in Excel?
Remove characters from left side of a cell
- =REPLACE(old_text, start_num, num_chars, new_text)
- =RIGHT(text,[num_chars])
- =LEN(text)
How do you remove the last 3 digits in Excel?
1. Use LEFT and LEN Functions to Delete the Last 3 Characters in Excel
- LEN(D5)-3 ▶ calculates the length of the text, “Jason Roy” and then subtracts the result with 3.
- D5 ▶ refers to the cell address of the text “Jason Roy”.
- =LEFT(D5,LEN(D5)-3) ▶ truncates the last 3 characters i.e. “Roy” from the text “Jason Roy”.