Hi all,
I am looking to move data from this format:
<!--[if !mso]><style>v\:* {behavior:url(#default#VML);}o\:* {behavior:url(#default#VML);}x\:* {behavior:url(#default#VML);}.shape {behavior:url(#default#VML);}</style><![endif]-->
<tbody>
</tbody>
<tbody>
</tbody>
To this format:
[TABLE="width: 800"]
<tbody>[TR]
[TD]Trading Name[/TD]
[TD]Division[/TD]
[TD]Address[/TD]
[TD]Address 1[/TD]
[TD]State[/TD]
[TD]Postcode[/TD]
[TD]Phone[/TD]
[TD]Fax[/TD]
[/TR]
[TR]
[TD]BRAD GARLICK FORD[/TD]
[TD]Automobile Dealers Metro[/TD]
[TD]2-16 BLAXLAND ROAD[/TD]
[TD]RYDE[/TD]
[TD]NSW[/TD]
[TD]2112[/TD]
[TD]02 9807-2933[/TD]
[TD]029939-7944[/TD]
[/TR]
[TR]
[TD]BROOKVALE MAZDA[/TD]
[TD]Automobile Dealers Metro[/TD]
[TD]blah[/TD]
[TD]blah[/TD]
[TD]blah[/TD]
[TD]blah[/TD]
[TD]blah[/TD]
[TD]blah[/TD]
[/TR]
</tbody>[/TABLE]
I'm basically wanting to convert blocks of data to logical rows and columns as well as split out the postcode and state from the same cell into another column.
Any help would be appreciated!
Regards,
Paul
I am looking to move data from this format:
<!--[if !mso]><style>v\:* {behavior:url(#default#VML);}o\:* {behavior:url(#default#VML);}x\:* {behavior:url(#default#VML);}.shape {behavior:url(#default#VML);}</style><![endif]-->
Trading Name: | BRAD GARLICK FORD |
Division: | [ Automobile Dealers Metro ] |
Address: | 2-16 BLAXLAND ROAD |
RYDE | |
NSW, 2112 | |
Phone: | 02 9807-2933 |
Fax: | 02 9808-2501 |
<tbody>
</tbody>
Trading Name: | BROOKVALE MAZDA |
Division: | [ Automobile Dealers Metro ] |
Address: | 786 PITTWATER RD |
BROOKVALE | |
NSW, 2100 | |
Phone: | 029939-7677 |
Fax: | 029939-7944 |
<tbody>
</tbody>
To this format:
[TABLE="width: 800"]
<tbody>[TR]
[TD]Trading Name[/TD]
[TD]Division[/TD]
[TD]Address[/TD]
[TD]Address 1[/TD]
[TD]State[/TD]
[TD]Postcode[/TD]
[TD]Phone[/TD]
[TD]Fax[/TD]
[/TR]
[TR]
[TD]BRAD GARLICK FORD[/TD]
[TD]Automobile Dealers Metro[/TD]
[TD]2-16 BLAXLAND ROAD[/TD]
[TD]RYDE[/TD]
[TD]NSW[/TD]
[TD]2112[/TD]
[TD]02 9807-2933[/TD]
[TD]029939-7944[/TD]
[/TR]
[TR]
[TD]BROOKVALE MAZDA[/TD]
[TD]Automobile Dealers Metro[/TD]
[TD]blah[/TD]
[TD]blah[/TD]
[TD]blah[/TD]
[TD]blah[/TD]
[TD]blah[/TD]
[TD]blah[/TD]
[/TR]
</tbody>[/TABLE]
I'm basically wanting to convert blocks of data to logical rows and columns as well as split out the postcode and state from the same cell into another column.
Any help would be appreciated!
Regards,
Paul