My cells are vcards which i'm trying to split out into separated columns (transpose): Name, Organisation, Title, Telephone, Address, Email, Notes
example of cell A1 content (A2, A3, An+1 have the same data types):
BEGIN:VCARD
N:Joe Bloggs
ORG:Microstaff
TITLE:IT executive
TEL:0234522555
ADR:;;48 rue de Tomato;75032;;Paris;France
EMAIL:joe.bloggs@microstaff.com
NOTE:Contact from Cool Event London 2014
END:VCARD
As you can see the delimiters are a bit odd (especially the address field), i've imported this from an iPhone app called QRReader, but it didnt port to CSV very well.
I've tried all sorts of ways such as: =IF(SEARCH("N:",A2),SUBSTITUTE(A2,"N:",""),"") for the name field and so on but this does not work very well because it pulls in all the stuff after "bloggs".
Any help appreciated thanks.
example of cell A1 content (A2, A3, An+1 have the same data types):
BEGIN:VCARD
N:Joe Bloggs
ORG:Microstaff
TITLE:IT executive
TEL:0234522555
ADR:;;48 rue de Tomato;75032;;Paris;France
EMAIL:joe.bloggs@microstaff.com
NOTE:Contact from Cool Event London 2014
END:VCARD
As you can see the delimiters are a bit odd (especially the address field), i've imported this from an iPhone app called QRReader, but it didnt port to CSV very well.
I've tried all sorts of ways such as: =IF(SEARCH("N:",A2),SUBSTITUTE(A2,"N:",""),"") for the name field and so on but this does not work very well because it pulls in all the stuff after "bloggs".
Any help appreciated thanks.