Skip to main content

Extract last two words from a cell in Excel

This tutorial explains how to use formula to extract the last two words from a cell in Excel.


How to extract the last two words from a cell in Excel?

Generic formula

=MID(cell,FIND("@",SUBSTITUTE(cell," ","@",LEN(cell)-LEN(SUBSTITUTE(cell," ",""))-1))+1,100)

Argument

Cell: The cell for which you want to extract the last two words.

How to use this formula?

As the below screenshot shown, you have a list of text strings, and want to extract the last two words from each cell in the list, please do as follows.

1. Select a blank cell to output the result.

2. Enter the below formula into it and press the Enter key. And then drag the Fill Handle to apply the formula to other cells. See below screenshot:

=MID(B5,FIND("@",SUBSTITUTE(B5," ","@",LEN(B5)-LEN(SUBSTITUTE(B5," ",""))-1))+1,100)

Note: In the formula, please replace the B5 with the cell you need.

How this formula works?

=MID(B5,FIND("@",SUBSTITUTE(B5," ","@",LEN(B5)-LEN(SUBSTITUTE(B5," ",""))-1))+1,100)

1. LEN(B5)-LEN(SUBSTITUTE(B5," ","")): To calculate the number of spaces in cell B5. The result is 4.

  • 1.1) LEN(SUBSTITUTE(B5," ","")): The SUBSTITUTE function removes all spaces from cell B5, and then the LEN function calculates the length for the text string without spaces. Here the result is 19;
  • 1.2) LEN(B5): This LEN function calculates the total length for the text string with spaces and returns the result as 23.
  • 2.3) After that, the length for the text string with spaces subtracts the length for the text string without spaces and finally get the number of spaces in cell B5: 23-19=4.

2. SUBSTITUTE(B5," ","@",4-1)): Replace the second last space with a given character such as @ in this case.

  • SUBSTITUTE(B5," ","@",3): Here the SUBSTITUTE function replaces the third space (this is also the second last space) in B5 with “@”. The result is: Excel is an useful@tool.

3. FIND("@","Excel is an useful@tool"): Find the location of character "@". The result of find is 12.

4. MID(B5,12+1,100): The MID function extracts a specific number of characters starting at the position of 13 from the text string in B5.

  • Here number 100 can guarantee you the number of characters is large enough.

Related functions

Excel LEN function
The LEN function returns the number of characters in a text string.

Excel SUBSTITUTE function
The SUBSTITUTE function replaces text or characters within a text string with another text or characters.

Excel MID function
The MID function is used to find and return a specific number of characters from the middle of given text string.

Excel FIND function
The FIND function is used to find a string within another string, and returns the starting position of the string inside another one.


The Best Office Productivity Tools

Kutools for Excel - Helps You To Stand Out From Crowd

🤖 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 VLookup: Multiple Criteria  |  Multiple Value  |  Across Multi-Sheets  |  Fuzzy Lookup...
Adv. Drop-down List: Easy 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 Columns to Select Same & Different Cells ...
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 Excel Cells ...)  |  ... and more

Kutools for Excel Boasts Over 300 Features, Ensuring That What You Need is Just A Click Away...

Description


Office Tab - Enable Tabbed Reading and Editing in Microsoft Office (include Excel)

  • One second to switch between dozens of open documents!
  • Reduce hundreds of mouse clicks for you every day, say goodbye to mouse hand.
  • Increases your productivity by 50% when viewing and editing multiple documents.
  • Brings Efficient Tabs to Office (include Excel), Just Like Chrome, Edge and Firefox.
Comments (0)
No ratings yet. Be the first to rate!
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations