Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Getting Rid of 8-Bit ASCII Characters.
Written by Allen Wyatt (last updated March 26, 2021)
This tip applies to Excel 97, 2000, 2002, and 2003
Bill often has to import information into a worksheet so that he can process it for his company. In Bill's situation, one of the first steps he needs to do is to remove all the 8-bit ASCII characters that may be in the imported data. These characters don't need to be replaced with anything; they just need to be deleted so that only 7-bit ASCII characters remain. Bill wonders if there is an easy way to do this, perhaps with a macro of some type.
There are a few ways that you can approach this problem, depending on the characteristics of the data that you are starting with. Assuming that you only have 8-bit characters in your worksheet, then the only character codes that could be used for characters is 0 through 255. If you want to limit your data to only 7-bit characters, then that means you only want things in the character-code range of 0 through 127. Thus, you could use a macro to easily search for any characters in the range of 128 to 255 and simply delete them. This macro takes this approach:
Sub Remove8Bit1() Cells.Select For i = 128 To 255 X = Chr(i) Selection.Replace What:=X, Replacement:="", _ LookAt:=xlPart, SearchOrder:=xlByRows, _ MatchCase:=False, SearchFormat:=False, _ ReplaceFormat:=False Next End Sub
The approach finds only those values in your worksheet that are in the 8-bit range. It won't touch anything that is in the 8-bit range that is actually created by a formula. (In most instances that shouldn't be a problem. If it is a problem, the proper fix is to modify the formulas creating the offending results.)
If your data contains Unicode characters, then you'll want to use a different approach. Technically, Unicode characters are not 8-bit characters; they are 16-bit characters and can have character code values in the range of 0 to 65,535. Because you want to ignore anything with a value over 127, using the search-based approach discussed earlier becomes unwieldy—you would end up doing over 65,000 searches instead of only 128.
A better approach is to simply look at all the characters in all the selected cells and if they have a character code over 127, ignore them. That is the approach taken in the following macro:
Sub Remove8Bit2() Dim rngCell As Range Dim intChar As Integer Dim strCheckString As String Dim strCheckChar As String Dim intCheckChar As Integer Dim strClean As String For Each rngCell In Selection strCheckString = rngCell.Value strClean = "" For intChar = 1 To Len(strCheckString) strCheckChar = Mid(strCheckString, intChar, 1) intCheckChar = Ascw(strCheckChar) If intCheckChar < 128 Then strClean = strClean & strCheckChar End If Next intChar rngCell.Value = strClean Next rngCell End Sub
Note that the macro uses the Ascw function instead of the traditional Asc function so that it looks at Unicode values.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (3142) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Getting Rid of 8-Bit ASCII Characters.
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!
Excel works with decimal values very easily. It is more difficult for the program to work with non-decimal values, such ...
Discover MoreIf you import information generated on a UNIX system, you may need to figure out how to change the date/time stamps to ...
Discover MorePart numbers can often be long, made up of other component elements. Breaking up part numbers into individual components ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
There are currently no comments for this tip. (Be the first to leave your comment—just use the simple form above!)
Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2024 Sharon Parq Associates, Inc.
Comments