Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Oh my gosh, so I have made a excel document containing about 140 rows for a ecrater bulklister. The point of the bulklister is so I can list all of my items on eCrater(free ebay) without having to do it one by one. The problem is that in my Items Description I have included line breaks so the listing will look organized. My bulklister has been rejected because of these line breaks. Is there a short cut to get rid of my line breaks so I don't have to do it manually? -- |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Select the range to fix
Edit|Replace what: ctrl-j with: (spacebar) replace all ctrl-j is the same as the alt-enter (or alt-0010 from the numeric keypad). " wrote: Oh my gosh, so I have made a excel document containing about 140 rows for a ecrater bulklister. The point of the bulklister is so I can list all of my items on eCrater(free ebay) without having to do it one by one. The problem is that in my Items Description I have included line breaks so the listing will look organized. My bulklister has been rejected because of these line breaks. Is there a short cut to get rid of my line breaks so I don't have to do it manually? -- -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Ok I understand the instructions but I get an error when I "replace all" In the "Replace With" field, I just pressed spacebar to insert a space This is the message that is displayed after trying to replace the whole column: "Microsoft Excel cannot find matching data to replace. No cell in the selection contains what you typed, or no records match the criteria." Dave Peterson;2656709 Wrote: Select the range to fix Edit|Replace what: ctrl-j with: (spacebar) replace all ctrl-j is the same as the alt-enter (or alt-0010 from the numeric keypad). " wrote:- Oh my gosh, so I have made a excel document containing about 140 rows for a ecrater bulklister. The point of the bulklister is so I can list all of my items on eCrater(free ebay) without having to do it one by one. The problem is that in my Items Description I have included line breaks so the listing will look organized. My bulklister has been rejected because of these line breaks. Is there a short cut to get rid of my line breaks so I don't have to do it manually? -- - -- Dave Peterson -- |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
The range you selected didn't contain any linebreaks.
Or you used a different character (not alt-enter) for the linebreak. Chip Pearson has a very nice addin that will help determine what that character(s) is: http://www.cpearson.com/excel/CellView.htm " wrote: Ok I understand the instructions but I get an error when I "replace all" In the "Replace With" field, I just pressed spacebar to insert a space This is the message that is displayed after trying to replace the whole column: "Microsoft Excel cannot find matching data to replace. No cell in the selection contains what you typed, or no records match the criteria." Dave Peterson;2656709 Wrote: Select the range to fix Edit|Replace what: ctrl-j with: (spacebar) replace all ctrl-j is the same as the alt-enter (or alt-0010 from the numeric keypad). " wrote:- Oh my gosh, so I have made a excel document containing about 140 rows for a ecrater bulklister. The point of the bulklister is so I can list all of my items on eCrater(free ebay) without having to do it one by one. The problem is that in my Items Description I have included line breaks so the listing will look organized. My bulklister has been rejected because of these line breaks. Is there a short cut to get rid of my line breaks so I don't have to do it manually? -- - -- Dave Peterson -- -- Dave Peterson |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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(##),"") or =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(##), Chr(##)) '<--What showed up in CellView? myGoodChars = Array(" ","") '<--what's the new character, "" for nothing? 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, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm " wrote: Your the man, Thanks. Looks like this should be the solution. I imagine that the html text <br is what is causing the hold up. Thanks again, Luke -- -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Remove Manual Line Breaks in Cell | Excel Discussion (Misc queries) | |||
Problem: Copying a cell that contains line breaks adds extra quotes | Excel Discussion (Misc queries) | |||
Hyperlink in cell with line breaks | Excel Discussion (Misc queries) | |||
I want to copy cell from word that includes line breaks to excel | Excel Discussion (Misc queries) | |||
Can you get line breaks in a text cell | Excel Discussion (Misc queries) |