Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 6
Default remove square at end of data

I was opening a text file with the excel app. It is a list of serial
numbers. When I open it, there is a small square figure at the end of some
of the serial numbers. What is it and how do I remove it without going to
each of 20,000 lines?
--
Jeff W
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default remove square at end of data

Saved from a previous post.

Chip Pearson has a very nice addin that will help determine what that
character(s) is:
http://www.cpearson.com/excel/CellView.aspx

Depending on what that character is, you may be able to use alt-#### (from the
number keypad) to enter the character into the Other box in the text to columns
wizard dialog.

In fact, you may be able to select the character (in the formula bar), and copy
it. Then use ctrl-v to paste into that text to columns Other box.

You may be able to use Edit|Replace to change the character--Some characters can
be entered by holding the alt-key and typing the hex number on the numeric
keypad. For example, alt-0010 (or ctrl-j) can be used for linefeeds. But I've
never been able to get alt-0013 to work for carriage returns.

Another alternative is to fix it via a formula:

=substitute(a1,char(##),"")

Replace ## with the ASCII value you see in Chip's addin.

Or you could use a macro (after using Chip's CellView addin):

Option Explicit
Sub cleanEmUp()

Dim myBadChars As Variant
Dim myGoodChars As Variant
Dim iCtr As Long

myBadChars = Array(Chr(##)) '<--What showed up in CellView?

myGoodChars = Array("")

If UBound(myGoodChars) < UBound(myBadChars) Then
MsgBox "Design error!"
Exit Sub
End If

For iCtr = LBound(myBadChars) To UBound(myBadChars)
ActiveSheet.Cells.Replace What:=myBadChars(iCtr), _
Replacement:=myGoodChars(iCtr), _
LookAt:=xlPart, SearchOrder:=xlByRows, _
MatchCase:=False
Next iCtr

End Sub

If you're new to macros:

Debra Dalgleish has some notes how to implement macros he
http://www.contextures.com/xlvba01.html

David McRitchie has an intro to macros:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Ron de Bruin's intro to macros:
http://www.rondebruin.nl/code.htm

(General, Regular and Standard modules all describe the same thing.)

Jeff W wrote:

I was opening a text file with the excel app. It is a list of serial
numbers. When I open it, there is a small square figure at the end of some
of the serial numbers. What is it and how do I remove it without going to
each of 20,000 lines?
--
Jeff W


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default remove square at end of data

I think you should be able to do a pretty simple find and replace. Copy the
symbol, go to the "replace" (ctrl+h in windows), paste that symbol in the
"Find What" box, and leave the "Replace With" box empty. Hit "Replace All"
and it should replace all intances of that symbol with nothing.

Jeff W wrote:

I was opening a text file with the excel app. It is a list of serial
numbers. When I open it, there is a small square figure at the end of some
of the serial numbers. What is it and how do I remove it without going to
each of 20,000 lines?
--
Jeff W

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default remove square at end of data

Try it with a few different "box" characters and report back your results.

serendipity258 wrote:

I think you should be able to do a pretty simple find and replace. Copy the
symbol, go to the "replace" (ctrl+h in windows), paste that symbol in the
"Find What" box, and leave the "Replace With" box empty. Hit "Replace All"
and it should replace all intances of that symbol with nothing.

Jeff W wrote:

I was opening a text file with the excel app. It is a list of serial
numbers. When I open it, there is a small square figure at the end of some
of the serial numbers. What is it and how do I remove it without going to
each of 20,000 lines?
--
Jeff W


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I a rotate my square radar chart (square-diamond)? Becs I Know Nathing Charts and Charting in Excel 5 April 3rd 23 07:30 PM
Convert a square of data into a PivotTable? The Mighty Ox Excel Discussion (Misc queries) 1 September 4th 06 09:46 PM
how to center a square plot area in a square chart xppuser Charts and Charting in Excel 2 March 11th 06 08:13 AM
Regression Output -- R Square versus Adjusted R Square Bonnie Excel Discussion (Misc queries) 1 October 25th 05 12:55 AM
plot 10 data pts in least square fit to find slope and intercept engineeringdoll Excel Worksheet Functions 1 April 14th 05 01:56 PM


All times are GMT +1. The time now is 04:36 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"