Deleting All Characters Up Through a Unique Character Sequence

Written by Allen Wyatt (last updated February 27, 2021)
This tip applies to Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365


2

Gary has a worksheet that contains a lot of information pasted from other sources. Sometimes cells will contain unwanted characters, and deleting all the unwanted characters cell by cell can be tedious. Gary can tell that all the unwanted characters always end in, say, a sequence such as "x27g," though the number of characters before this sequence can vary from cell to cell. He wonders if there a way to use Find and Replace to delete not only the sequence but everything before the sequence from all the cells in a worksheet.

At first blush, this may seem like the type of task that is best suited to a macro. This is not the case, however. You can actually accomplish the task using Find and Replace with wildcards. Testing shows that this will work just fine:

  1. Press Ctrl+H. Excel displays the Replace tab of the Find and Replace dialog box. (See Figure 1.)
  2. Figure 1. The Replace tab of the Find and Replace dialog box.

  3. In the Find What box, enter an asterisk followed by your ending sequence. Thus, in Gary's case, he would enter "*x27g" (without the quote marks).
  4. Make sure the Replace With box is empty.
  5. Click Replace All.

If that doesn't work for you, it is possible that there are some of the Find and Replace options set incorrectly. You can display the Replace tab of the Find and Replace dialog box again, but this time click the Options button. This results in an expanded dialog box. Make sure that no formatting is set, that the Look In drop-down list is set to Formulas, and that the Match Entire Cell Contents check box is cleared.

If, for some reason, you prefer to use a macro to do the replacements, the following will work just fine.

Sub DeleteBefore()
    Dim rCell As Range
    Dim sFind As String
    Dim iLen As Integer
    Dim iFind As Integer

    sFind = "x27g" 'Change as desired
    iLen = Len(sFind)
    For Each rCell In Selection
       iFind = InStr(rCell, sFind)
       If iFind > 0 Then
           rCell.Value = Mid(rCell, iFind + iLen)
       End If
    Next
End Sub

This is a simple macro that looks at each cell in whatever range you've selected. If the cell contains your ending sequence (specified in the sFind variable), then everything up through that sequence is deleted.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (13828) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Misbehaving Rulers

When upgrading from Word 2000 to 2002, many people have a problem with the Ruler function. This tip explains how to fix ...

Discover More

Copying a File in VBA

Need to have your macro copy a file from one place to another? It's easy to do using the FileCopy command, described in ...

Discover More

Microsoft Word VBA Guidebook

Creating Word macros allows you to extend your productivity with Word. Visual Basic for Applications (VBA) is the ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More ExcelTips (ribbon)

Searching for Leading Apostrophes

Take a look at the Formula bar when you select a cell that contains text, and you may see an apostrophe at the beginning ...

Discover More

Searching a Workbook by Default

When you display the Find tab of the Find and Replace dialog box, you'll notice that any search, by default, will be on ...

Discover More

Finding and Replacing in Text Boxes

Finding and replacing information in a worksheet is easy. Finding and replacing in other objects (such as text boxes or ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is five less than 6?

2021-03-01 06:49:44

Mike D.

I was thinking the macro method as well. I started to work on a solution for this but life has a funny way of getting in the way.
I keep forgetting that we can use wild cards in the Find Box.
I guess I look for the complicated solution first and then look for the easy way out. Must be the engineer in me.


2021-02-28 02:40:42

Rinku

Find and replace all option does'nt work well. I cross checked the options formatting ,that is set correctly, still.


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.