ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   replace new line character (https://www.excelbanter.com/excel-discussion-misc-queries/119053-replace-new-line-character.html)

ciruliz

replace new line character
 
Hi,
I must replace all new line characters in cell contents by something
(perhaps - space)
before converting to CSV, because otherwise CSV becomes unreadable for other
software.

I know, in Ms Word it is possible to replace ^p (which stands for new line)
with something

It does`nt work in Excel.

Any other options how to do that ?

Thanks!
Andis



Chip Pearson

replace new line character
 
Select your cells, then display the Replace dialog, With the cursor in the
Find What box, hold down the ALT key and type 0010 on the numeric keypad
(not the numbers above the letters). Nothing will display, but the character
will be there. Then enter something in the Replace With box.




"ciruliz" wrote in message
...
Hi,
I must replace all new line characters in cell contents by something
(perhaps - space)
before converting to CSV, because otherwise CSV becomes unreadable for
other software.

I know, in Ms Word it is possible to replace ^p (which stands for new
line) with something

It does`nt work in Excel.

Any other options how to do that ?

Thanks!
Andis




Dave Peterson

replace new line character
 
If you used alt-enter for that new line character, you can

Select the range to fix
edit|replace
what: ctrl-j
with: (spacebar) (or whatever you want)
replace all



ciruliz wrote:

Hi,
I must replace all new line characters in cell contents by something
(perhaps - space)
before converting to CSV, because otherwise CSV becomes unreadable for other
software.

I know, in Ms Word it is possible to replace ^p (which stands for new line)
with something

It does`nt work in Excel.

Any other options how to do that ?

Thanks!
Andis


--

Dave Peterson

ciruliz

replace new line character
 
good, big thanks for ideas.
Actually I figured out other way :

simple VB macro:

Public Sub ConvertCells()

Dim Cell As Range
For Each Cell In Application.Selection
Cell = Replace(Cell, vbLf, " ")
Next Cell

End Sub


which works as expected :)

Best regards, Andis


"ciruliz" wrote in message
...
Hi,
I must replace all new line characters in cell contents by something
(perhaps - space)
before converting to CSV, because otherwise CSV becomes unreadable for
other software.

I know, in Ms Word it is possible to replace ^p (which stands for new
line) with something

It does`nt work in Excel.

Any other options how to do that ?

Thanks!
Andis





All times are GMT +1. The time now is 07:19 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com