How to extract a letter from a word in excel


Extract substring from left, mid or right

Method A: Extract substring from left, middle or right by using formula

In Excel, there are some formulas can help you to quickly extract part of text.

Extract first n characters

Supposing you want to extract first 3 characters from a given list data, please select a blank cell that you want to place the extracted result, then use this formula

=LEFT(B3,3)

B3 is the cell you extract characters from, 3 is the number of characters you want to extract.

Press Enter key to get the extracted result. Then drag fill handle over the cells to apply this formula.

How to extract a letter from a word in excel

Extract last n characters

For example, extract last 6 characters from a list of string, please select a blank cell that you want to place the extracted result and use this formula:

=RIGHT(B9,6)

B9 is the cell you extract characters from, 6 is the number of characters you want to extract.

Press Enter key to get the extracted result. Then drag fill handle over the cells to apply this formula.

How to extract a letter from a word in excel

Extract n characters form middle

If you want to extract 3 characters begin from the 4th character of a string, you can use below formula:

=MID(B15,4,3)

B15 is the cell you extract characters from, 4 represent extract characters from 4th character (count from left), 3 is the number of characters you want to extract.

Press Enter key to get the extracted result. Then drag fill handle over the cells to apply this formula.

How to extract a letter from a word in excel

Note:

If you want to move the extracted results to another location, please copy and paste the extracted results as value firstly.

Method B: Extract substring from left, mid or right by Kutools for Excel

If you are not familiar with formulas, you can try Kutools for Excel’s Extract Text feature which is easy to handle this job.

Before using the Extract Text utility, please take 3 minutes to free install Kutools for Excel: Free Download Now!

1. Select the cells that you want to extract substrings from, click Kutools > Text > Extract Text.

How to extract a letter from a word in excel

2. In the popping Extract Text dialog, under the Extract by location tab, the first three options support you to extract substring from left, mid or right.

How to extract a letter from a word in excel

The first N character: extract substring from left. For instance, extract first 2 characters, check this option and type 2 into textbox.

How to extract a letter from a word in excel

The last N character: extract substring from right of the string. For instance, extract last 2 characters, check this option and type 2 into textbox.

How to extract a letter from a word in excel

Start to end characters: extract specific number of characters from middle for string. For instance, extract from 4th character to 9th character, check this option and type 4 and 9 into textboxes separately.

How to extract a letter from a word in excel

Insert as a formula: check this checkbox, the result is a formula which can be changed as the original string change, otherwise, the result is fixed.

3. After specifying the location as you need, click Ok, a dialog pops out to select a cell to place the extracted substring. Click OK.

How to extract a letter from a word in excel

Now the substring has been extracted.

How to extract a letter from a word in excel


Extract substring after or before a specified character

If you want to extract substring after or before a specified character, you can apply one of below methods to handle the job.

Method A: Extract substring after or before a defined character by using formula

Supposing you want to extract characters after the character “-” from a list of strings, please use this formula:

=RIGHT(B3,LEN(B3)-SEARCH("-", B3))

B3 is the cell you want to extract characters from, - is the character you want to extract string after.

Press Enter key to get the extracted result. Then drag fill handle over the cells to apply this formula.

How to extract a letter from a word in excel

If you want to extract substring before a defined character, you can use the formula like this:

=LEFT(B10,SEARCH("-", B10)-1)

Example result is shown as below:

How to extract a letter from a word in excel

Note

The data may be lost or changed while you copy and paste the formula results to another location. For preventing this problem from happening, you can copy and paste the formula results as value after applying the formula. Or you can try the Method B.

How to extract a letter from a word in excel

Method B: Extract substring after or before a defined character by Kutools for Excel

For directly extract substring after or before a specified character, you can use the Extract Text utility of Kutools for Excel, which can help you to extract all characters after or before a character, also can extract specific length of characters before or after a character.

Before using the Extract Text utility, please take 3 minutes to free install Kutools for Excel: Free Download Now!

1. Select the cells that you want to extract characters, click Kutools > Text > Extract Text.

How to extract a letter from a word in excel

2. In the popping Extract Text dialog, under Extract by location tab, go to the before the text and after the text options to specify the setting as you need..

How to extract a letter from a word in excel

Before the text: extract substrings before the entered character(s). For instance, type – into the textbox, all characters before – will be extracted.

How to extract a letter from a word in excel

After the text: extract substrings after the entered character(s). For instance, type – into the textbox, all characters after – will be extracted.

How to extract a letter from a word in excel

Insert as a formula: check this checkbox, the result is a formula which can be changed as the original string change, otherwise, the result is fixed.

3. Click Ok, a dialog pops out to select a cell to place the extracted substring. Click OK.

How to extract a letter from a word in excel

Now the string before or after the certain character(s) has been extracted.

How to extract a letter from a word in excel


How to extract a letter from a word in excel

13 Text tools You Must Have in Excel Which Will Boot Your Efficiency By 90%

▲ Batch edit text string in cells, such as adding same text to cells at once, remove characters at any position and so on.

▲ Except tools displayed in picture, there are 300 advanced tools else in Kutools for Excel, which can solve your 82% Excel puzzles.

▲ Become an Excel expert in 5 minutes, gain people's recognition and promotion.

▲ 110000+ high efficiency people sand 300+ world renowned companies' choice.

30-days free trial, no credit card require


Extract substring between two characters

Maybe in some cases, you need to extract substring between two characters, you can choose one of below methods to handle the job.

Method A: Extract by formula

Supposing to extract characters between brackets () from a given list, you can use below formula:

=MID(LEFT(B3,FIND(")",B3)-1),FIND("(",B3)+1,LEN(B3))

In the formula, B3 is the cell that you want to extract string from, ( and ) are the two characters you want to extract string between.

Press Enter key to get the extracted result. Then drag fill handle over the cells to apply this formula.

How to extract a letter from a word in excel

Note

If the formula is a little difficult for you, you can try the Method B, which is using a handy tool to quickly solve this problem.

Method B: Extract by Kutools for Excel

In Kutools for Excel’s hundreds of features, there is a feature – Extract strings between specified text can quickly extract substrings between two characters.

Before using the Extract Text utility, please take 3 minutes to free install Kutools for Excel: Free Download Now!

1. Select a cell that used to place the extracted substring, click Kutools > Formula Helper > Text > Extract strings between specified text.

How to extract a letter from a word in excel

2. In the Formulas Helper dialog, go to the Arguments input section, then select or directly type the cell reference and the two characters you want to extract between.

In default, when you select the cell reference which used to extract substring, the cell reference will be absolute which cannot use the auto fill handle to fill formula, please change it to relative.

How to extract a letter from a word in excel

3. Click Ok, now the first result has been gotten, then drag auto fill handle over cells that need this formula.

How to extract a letter from a word in excel

Tip:

If you want to extract strings between two characters (including the two characters), the Extract Text utility of Kutools for Excel also can do you a favor on this operation.

1. Select the cells that you want to extract substring between characters, click Kutools > Text > Extract Text.

How to extract a letter from a word in excel

2.In the popping Extract Text dialog, under Extract by rule tab, go to the Text section, type the characters that you want to extract string between, and the string can be repented by the wildcard *. If you want to extract string with fixed length, the wildcard ? can be used, one ? indicate one character.

Then click Add to add the rule to the Rule description section.

How to extract a letter from a word in excel

3.Click Ok, a dialog pops out to select a cell to place the extracted substring. Click OK.

How to extract a letter from a word in excel

Now the string between two certain characters has been extracted.

How to extract a letter from a word in excel


Extract E-mail address from a string

If you want to extract e-mail address from a given string or a range of cells, you can use the Extract Email Address function to handle this job at once time instead of finding them one by one.

Before using the Extract Email Address utility, please take 3 minutes to free install Kutools for Excel: Free Download Now!

1. Select the cells that will be extracted email address, then click Kutools > Text > Extract Email Address.

How to extract a letter from a word in excel

2. Then a dialog pops out for you selecting a cell to output the address emails.

How to extract a letter from a word in excel

3. Click OK, the email addresses in each cell have been extracted.

How to extract a letter from a word in excel


Extract numeric or alphabetical characters from string

If there is a list of data mixed numeric and alphabetical and special characters, you just want to extract the numbers or alphabetical values, you can try Kutools for Excel’s Remove Characters utility.

1. Before you using the Remove Characters utility, you need to have a copy of the data as below screenshot shown:

How to extract a letter from a word in excel

2. Then select this copy of data, click Kutools > Text > Remove Characters.

How to extract a letter from a word in excel

3. In the Remove Characters dialog, check Non-numeric option, click Ok.

How to extract a letter from a word in excel

Now only the numeric characters have been left.

How to extract a letter from a word in excel

To extract alphabetical values only, check Non-alpha option in the Remove Characters dialog.

How to extract a letter from a word in excel


Download sample file

How to extract a letter from a word in excel
Click to download this sample file


Other Operations (Articles) Related To File Conversion

Extract time from datetime string
Provides tricks to extract time (hh:mm:ss) or hour/minute/second only from datetime string (mm/dd/yyyy hh:mm:ss)

Extract rows that meet criteria
In this article, it can help you quickly extract these rows that meet criteria to another location in Excel except finding and copying them one by one.

Extract a nth character from string
Here will introduce the methods on extracting the nth character from a string, for example, extract the 3th character from string a1b2c3, the result is b.



The Best Office Productivity Tools

Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%

  • Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
  • Merge Cells/Rows/Columns and Keeping Data; Split Cells Content; Combine Duplicate Rows and Sum/Average... Prevent Duplicate Cells; Compare Ranges...
  • Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
  • Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
  • Favorite and Quickly Insert Formulas, Ranges, Charts and Pictures; Encrypt Cells with password; Create Mailing List and send emails...
  • Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
  • Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
  • Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
  • Pivot Table Grouping by week number, day of week and more... Show Unlocked, Locked Cells by different colors; Highlight Cells That Have Formula/Name...

How to extract a letter from a word in excel


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!

How to extract a letter from a word in excel

How do I extract specific text from a cell in Excel?

Depending on where you want to start extraction, use one of these formulas: LEFT function - to extract a substring from the left. RIGHT function - to extract text from the right. MID function - to extract a substring from the middle of a text string, starting at the point you specify.

How do I extract a word from one word in Excel?

Extract word containing specific text.
SUBSTITUTE(B5," ",REPT(" ",99)) This replaces each single space with 99 spaces. ... .
FIND("@",SUBSTITUTE(B5," ",REPT(" ",99)))-50. FIND returns the position of the "@" in this text, from which 50 is subtracted. ... .
MID(SUBSTITUTE(B5," ",REPT(" ",99)),366,99).

How do you find a specific letter in a word in Excel?

Follow these steps to locate cells containing specific text:.
Select the range of cells that you want to search. ... .
On the Home tab, in the Editing group, click Find & Select, and then click Find..
In the Find what box, enter the text—or numbers—that you need to find..