How to Remove Text Before or After a Specific Character in Excel

Excel is not just for mathematical calculations, the software also offers many powerful ways to manipulate data, including separating text strings. Manipulating text is accomplished through several methods and we walk through five options in this tutorial.

Use the Find and Replace Function to Remove Text Before or After a Specific Character in Excel

 For this tutorial, we will work with employee names and company roles separated by semicolons in individual cells in Excel.

  1. Select all the cells in your worksheet.
Image displaying an Excel worksheet with Employee Names and Company Roles highlighted.

  1. Tap the down arrow to the right of Find & Select in the Editing Group on the Home Tab and then click Replaceā€¦
Image showing the navigational path to the Find and Replace dialog box.

  1. Type an asterisk (*) followed by a semicolon (;) in the Find What: portion. Leave the Replace text box empty and tap the Replace all button.
Image showing and asterisk and a semicolon in the Find What: portion of the Find and Replace dialog box.

  1. Excel deletes the employee names from the cells, leaving just the company roles.
Image displaying only the Company Roles of the Employees.

Use Find and Replace to Remove Text After a Specific Character in Excel (H3)

  1. Select all the cells in your worksheet.
Image displaying an Excel worksheet with Employee Names and Company Roles highlighted.

  1. Click the down arrow to the right of Find & Select in the Editing Group on the Home Tab and then tap Replaceā€¦
Image showing the navigational path to the Find and Replace dialog box.

  1. Insert a semicolon (;) accompanied by an asterisk (*) in the Find What: portion of the dialog box. Leave the Replace text box empty and press the Replace all button.
Image displaying the Find and Replace dialog box with a semicolon and an asterisk in the Find What portion of the dialog box.

  1. The company roles are deleted and only the employee names remain.

Use Formulas to Remove Text Before or After a Specific Character in Excel

Functions in Excel require arguments for them to work properly.

The TEXTBEFORE function has four arguments:

  • Text: The text you are searching for. This is required.
  • Delimiter: The character that marks the exact place in the text before the text you want to remove. This argument is required. This is also used to separate first and last names.
  • Instance_Num: The number of instances in which the delimiter appears after the text you wish to extract. This argument is optional, but the default is equal to 1.
  • Match_Mode: Can be used if the text is case-sensitive. This argument is optional, although if you choose to use it, 1=case-insensitive, 0=case-sensitive. 
  • Match_End: Sees the end of the text string as a delimiter. This argument is also optional; however, you can enter 0 to not match the end of the string or 1 to match the end of the string.

Now, let’s use the TEXTBEFORE function in our example.

  1. Place a new column next to your original data.
Image showing the original Employee Data with an additional column called New Data for the TEXTBEFORE Formula.

  1. Type the following into the first cell of the new column: =TEXTBEFORE(A3,”;”,1,1,0).
Image showing Brian Smith in cell B3 after implementing the TEXTBEFORE Function.

We used some of the optional arguments in the formula so that you can see them in action.

  • A3 is the cell where the search text is
  • The semicolon is the delimiter and must be enclosed in quotation marks
  • The first number 1 is the first and only instance of the delimiter
  • The second number 1 tells Excel that the match_mode is not case sensitive
  • The zero signals Excel to not match the delimiter at the end of the text.

  1. Use the Fill Handle in the bottom right-handle corner of the cell to copy the formula through the remaining cells.
Image displaying the New Data column complete after using the Fill Handle to copy the TEXTBEFORE Function through the range B4:B11.

Then you can save the data afterwards without using formulas.

Use the TEXTAFTER Function to Remove Text After a Specific Character in Excel

The TEXTAFTER function has the same arguments as the TEXTBEFORE function, except for the delimiter marks the exact position in the text string after the text you want to extract. 

Let’s apply the TEXTAFTER Function to our example data.

  1. Insert a new column beside your original dataset.
Image showing a new column named New Data  to use  the TEXTAFTER Function.

  1. Type the following formula into the first cell of the new column. =TEXTAFTER(A3,”;”,1,0,0).
Image displaying Human Resources in cell B3 of the new column after using the TEXTAFTER Function.

  1. Use the Fill Handle to insert the formula into the remaining cells.
Image showing the New Data Column complete after using the Fill Handle to insert the TEXTAFTER Function through the remaining cells.

Use Flash Fill to Remove Text Before or After a Specific Character in Excel

Flash Fill recognizes a pattern of data and will automatically fill a column with new data based on that pattern.

  1. Insert a new column next to your data.
Image showing a new column named "New Data" added to the Excel worksheet.

  1. Type the text that you want to appear in the first cell of the new column and press the ENTER key.
Image showing the beginning process of using Flash Fill in Excel.

  1. Start typing the data into the next cell. You see a dim list appear with the pattern for the existing data.
Image showing the dim results of the Flash Fill command.

  1. Press the ENTER key and Excel will finish the pattern for you.
Image displaying the complete list of Employee Names after pressing the ENTER key on the dim listing of the Flash Fill command.

Conclusion

Now, you have learned different ways of extracting data (and maybe URLs from hyperlinks, too). Also you can check other related tutorial that explains How to Remove a Specific Character from a String.

Leave a Comment