Thread: [Solved] Seperating text data
View Single Post
 
Old 10-31-2013, 07:34 AM
Evolta Evolta is offline Windows 7 64bit Office 2010 64bit
Novice
 
Join Date: Oct 2013
Posts: 15
Evolta is on a distinguished road
Default

What you can do is this:

Select all data: replace all " for nothing.
you will get: Bloggs, Joe <bloggsjoe@gmail.com>

Select all data: replace all > for nothing
you will get: Bloggs, Joe <bloggsjoe@gmail.com

Write in B1: =LEFT(A1;SEARCH(" <";A1;1))
(you might need to change the seperator ; for ,)

Write in C1: =RIGHT(A1;LEN(A1)-FIND("<";A1))
(you might need to change the seperator ; for ,)


Drag that to B100 and to C100
Reply With Quote