Hi Rick
You can use a helper column and the following formula
=SUBSTITUTE(A1,CHAR(10)," "
Change the " " to whatever delimiter you want to use. Then Copy and Paste_Special>Values. This will remove all of the carriage returns
Another option would be to split up the addresses with LEFT and RIGHT functions, instead of text-to-columns
=LEFT(A1,FIND(CHAR(10),A1)-1
=RIGHT(A1,LEN(A1)-FIND(CHAR(10),A1)
Hope one of these helps
Good Luck
Mark Graesse
(e-mail address removed)
Boston M
----- (e-mail address removed) wrote: ----
Mark
That's a good tip! Except I work on a laptop that has no
numeric pad and it does not work. Do you know a way
around it
Thank
Ric
-----Original Message----
Hi Rick
The problem is probably caused by carriage returns.
When you start the text to columns you will see a thick
line character before "Boston", or it will be evident
because the cell wraps after the street address
2) With the cursor in the 'find what' field, hold the
alt key and type 010 on the number pad (not the top of
the keyboard) You won't see anything in the field but
the carriage return is there
3) Leave the 'replace with' field blank or enter
whatever delimiter you want to use