ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   carriage return that works when pasted into a text file (eg. Notep (https://www.excelbanter.com/excel-discussion-misc-queries/71442-carriage-return-works-when-pasted-into-text-file-eg-notep.html)

Chris Glen

carriage return that works when pasted into a text file (eg. Notep
 
Is this possible?

I'm concatenating several columns, and then copying that into a text file so
I can view it in Notepad. But I want a carriage return in there to break it
into two lines. CHAR(10) appears as a square in Notepad.

Eric_MUC

carriage return that works when pasted into a text file (eg. Notep
 
Hi Chris,

not as far as I know.

But you could use a macro to write these rows in a text-file (even faster
than copying it manually ;) ).
There you can use e.g. vbLf or vbCr...

Did this help you?

Best wishes,
Eric

"Chris Glen" wrote:

Is this possible?

I'm concatenating several columns, and then copying that into a text file so
I can view it in Notepad. But I want a carriage return in there to break it
into two lines. CHAR(10) appears as a square in Notepad.


Kevin Vaughn

carriage return that works when pasted into a text file (eg. Notep
 
I tried char(10) and char(13) in Notepad and got the same results. However,
using Wordpad and doing a paste special unformatted text resulted in seperate
lines for both.
--
Kevin Vaughn


"Chris Glen" wrote:

Is this possible?

I'm concatenating several columns, and then copying that into a text file so
I can view it in Notepad. But I want a carriage return in there to break it
into two lines. CHAR(10) appears as a square in Notepad.


David McRitchie

carriage return that works when pasted into a text file (eg. Notep
 
Hi Chris,

Excel only recognizes CHAR(10) or in VBA CHR(10) which is actually a LF (line-feed)
and in order for it to be effective you must have wrap turned on (format, cells, alignment, wrap text).
When you use Alt+Enter you automatically get wrapping turned on for that cell.

if you are seeing the square bullet in Excel then you probably just need to turn on
Cell Wrapping (as described above)

To concatenate cells within the worksheet you can use something like
=A1 & Char(10) & B1
or something slightly different
=A1 & Char(10) & " " & B1
which would indent the second line one character before the first line.


To look for CHAR(10) using Find, Replace, or Text to Columns you
would hold Alt+0010 or
on a laptop use Fn+Alt+0010 on numeric keypad with NumLock off.
which will produce 1 character that you won't see.

It always worked for me in earlier versions of Excel and I don't know
why Alt+0010 is not working for me in Excel 2002, and incidentally
it still works in Notepad.

additional information in
http://www.mvps.org/dmcritchie/rexx/htm/symbols.htm

---
HTH,
David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

"Kevin Vaughn" wrote in message ...
I tried char(10) and char(13) in Notepad and got the same results. However,
using Wordpad and doing a paste special unformatted text resulted in seperate
lines for both.
--
Kevin Vaughn


"Chris Glen" wrote:

Is this possible?

I'm concatenating several columns, and then copying that into a text file so
I can view it in Notepad. But I want a carriage return in there to break it
into two lines. CHAR(10) appears as a square in Notepad.





All times are GMT +1. The time now is 09:06 PM.

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