Skip to main content

Excel Formula: Extract text from right until character

In this tutorial, it provides a formula to extract text from right of the given text until it meets a specified character, and explains the arguments of each formula.
doc extract extension from file name 5

Generic formula:

IFERROR(RIGHT(txt,LEN(txt)-SEARCH("$",SUBSTITUTE(txt," char","$",LEN(txt)-LEN(SUBSTITUTE(txt,"char",""))))), txt)

Arguments

Txt: the cell reference or text string you use.
Char: the character you want to extract text from right until meet.

Remark

If the formula does not find the specified character, it returns the original data.
doc extract from right until a character 4

How this formula work

For example, you need to extract the text from right of the text string in cell B3 until space, please use below formula:

=IFERROR(RIGHT(B3,LEN(B3)-SEARCH("$",SUBSTITUTE(B3," ","$",LEN(B3)-LEN(SUBSTITUTE(B3," ",""))))), B3)

Press Enter key to extract the text.
doc extract from right until a character 2

Explanation

SUBSTITUTE functionis used to replace a text or character with a new one. Here the formula SUBSTITUTE(B3," ","") in the long formula replace the space with nothing, and returns “Gotolastcell”.

LEN function counts the number of characters in the given text. Now the LEN(SUBSTITUTE(B3," ","")) can be seen as LEN(“Gotolastcell”) returns 12.

Then the formula LEN(B3)-LEN(SUBSTITUTE(B3," ","")) returns 3. Then the formula SUBSTITUTE(B3," ","$",LEN(B3)-LEN(SUBSTITUTE(B3," ",""))) can be seen as SUBSTITUTE(B3," ","$",3), returns “Go to last$cell”.

SEARCH function find the location of text in a given text. The formula SEARCH("$",SUBSTITUTE(B3," ","$",LEN(B3)-LEN(SUBSTITUTE(B3," ",""))))) can be seen as SEARCH("$","Go to last$cell") returns 11.

RIGHT function extract text from right side of text. Here RIGHT(B3,LEN(B3)-SEARCH("$",SUBSTITUTE(B3," ","$",LEN(B3)-LEN(SUBSTITUTE(B3," ",""))))) can be seen as
RIGHT(B3,LEN(B3)-11)
=RIGHT(B3,3)
=”cell”

IFERROR function is used to trap and deal with errors. Here if the formula does not found the character “ “, it returns the original data.
doc extract from right until a character 3

Sample File

doc sampleClick to download sample file


Relative Formulas


Relative Functions


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