Cell Text to Column

mspincus

New Member
Joined
Jul 30, 2010
Messages
37
After importing pdf info into an excel spreadsheet, all o the data comes into 1 cell. I have a name, phone number and email address. Ultimately I need them in 4 rows so I can export it into csv format and them import these names into another program. An example - call a1 has Particia LowTower (555)-555-5555 patricia@gmailatgmail.com. What I have been doing is putting a comma after the first name, lastname, phone number,, email address. and then I go to text to column and it works. is there an easier way than 1X1
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Yeah if you used LEFT and MID functions in each column per data type, assuming each string i.e name is the same number of characters that would split it.

For example (assume the full text is in A1) =LEFT(A1,17) would get Particia LowTower then =MID(A1,19,14) would get the (555)-555-5555 phone number.

Hope that helps.
 
Upvote 0
use a space as delinator - if the name is ok, and not got 2 names ie marie ann
 
Upvote 0
Here's another solution with your data in the A column and specifically meets the format of the example you gave. But, etaf's solution is probably the easiest.
B column fill down:
Code:
=LEFT(A1,FIND(" ",A1)-1)
C column fill down:
Code:
=MID(A1,FIND("(",A1),14)
D column fill down:
Code:
=RIGHT(A1,LEN(A1)-FIND(CHAR(160),SUBSTITUTE(A1," ",CHAR(160),3)))
 
Upvote 0

Forum statistics

Threads
1,214,895
Messages
6,122,128
Members
449,066
Latest member
Andyg666

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top