I have groups of cells that are different number of rows long. What differentiates the groups is a space in between them. I would like to be able to change every row from A within a group into a new Colum. For example:
INPUT
[TABLE="width: 719"]
<tbody>[TR]
[TD][TABLE="width: 298"]
<tbody>[TR]
[TD]3/S Carwash Service[/TD]
[/TR]
[TR]
[TD]4635 S. Harlem[/TD]
[/TR]
[TR]
[TD]Forest View, IL 60402[/TD]
[/TR]
[TR]
[TD]Phone:708-749-4075[/TD]
[/TR]
[TR]
[TD]Fax:N/A[/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[/TR]
[TR]
[TD]A-1 High Pressure Self Serve Car Wash Equipment & Service[/TD]
[/TR]
[TR]
[TD]5226 S 132 Street[/TD]
[/TR]
[TR]
[TD]Omaha, NE 68137[/TD]
[/TR]
[TR]
[TD]Phone:402-895-5544[/TD]
[/TR]
[TR]
[TD]Fax:N/A[/TD]
[/TR]
</tbody>[/TABLE]
OUTPUT
[TABLE="width: 456"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[TD]F[/TD]
[TD]G[/TD]
[/TR]
[TR]
[TD]3/S Carwash Service[/TD]
[TD]4635 S. Harlem[/TD]
[TD]Forest View[/TD]
[TD]IL[/TD]
[TD="align: right"]60402[/TD]
[TD]Phone:708-749-4075[/TD]
[TD]Fax:501-378-0102[/TD]
[/TR]
[TR]
[TD]A-1 High Pressure[/TD]
[TD]5226 S 132 Street[/TD]
[TD]Omaha[/TD]
[TD]NE[/TD]
[TD="align: right"]68137[/TD]
[TD]Phone:402-895-5544[/TD]
[TD]Fax:N/A[/TD]
[/TR]
</tbody>[/TABLE]
[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD="align: right"][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
I'm using Excel 2011
Thanks