How do I remove carriage returns from a cell

B

Belinda

I have a program that when the information is put into an excel 2003 format
it appears as below all in 1 cell. I need to be able to have it all on 1
line to be able to do a text to columns to get just the information I need.

"FED WIRE OUT ORIGINATOR:
INC AC/ BENEFICIARY:
RECVBNK: ABA: RFB:200807
OBI: TRANSFER
ACCOUNT TRN:
FED REF/TIME: DATE:08-01-08 POST TIME:09:26:03"
 
T

Teethless mama

=SUBSTITUTE(A3,CHAR(10)," ")

Copy > Paste > Special > Value
Text to Columns
 
D

Dave Peterson

You can use that alt-enter in the data|text to columns wizard.

Use the Other box and hit ctrl-j.
(It may not look like you entered anything, but try it.)
 
S

ShaneDevenshire

Hi,

You also might try the

=CLEAN(A1)

function. This often strips carriage returns from text, depending on
exactly how they are created.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top