I have a field in a SQL-Server 2008R2 table which contains values like this (all lines in one field):
<div><font face=""Times New Roman"" size=3 color=black>MyCustomer Name Ltd.</font></div>
<div><font face=""Times New Roman"" size=3 color=black>MyCustomer Adress</font></div>
<div><font face=""Times New Roman"" size=3 color=black>MyCustomer Zip-code MyCustomer City</font></div>
I am working in Access 2010 and have to Export this Content into an Excel sheet with 3 columns: Name, Adress, Zip+City
I tried with
Split(rs("Myfield"), "<div><font face=""Times New Roman"" size=3 color=black>")
but it does not work.
Any idea how to split this string? Thanks Michael