I'm needing some help turning a table with two columns, into a table with multiple columns based on the information in the column. The table I currently have has over 300 rows and I want to turn this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]123888[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]OTHER US[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]KSU[/TD]
[TD]3.92[/TD]
[/TR]
[TR]
[TD]378288[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]CHAMPAGNE-URBANA[/TD]
[TD]3.8[/TD]
[/TR]
[TR]
[TD]999914[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]PORTLAND STATE[/TD]
[TD]3.4[/TD]
[/TR]
[TR]
[TD]DARTMOUTH[/TD]
[TD]3.6[/TD]
[/TR]
[TR]
[TD]NORTHWESTERN[/TD]
[TD]3.8[/TD]
[/TR]
</tbody>[/TABLE]
into this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]123888[/TD]
[TD]OTHER US[/TD]
[TD]4[/TD]
[TD]KSU[/TD]
[TD]3.92[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]378288[/TD]
[TD]CHAMPAGNE-URBANA[/TD]
[TD]3.8[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]999914[/TD]
[TD]PORTLAND STATE[/TD]
[TD]3.4[/TD]
[TD]DARTMOUTH[/TD]
[TD]3.6[/TD]
[TD]NORTHWESTERN[/TD]
[TD]3.8[/TD]
[/TR]
</tbody>[/TABLE]
Is this possible through a formula or a macro? I'm not too savvy with VBA, but am willing to give that a go if it would be easier. The thing that makes this difficult (at least for me) is that some IDs have multiple schools/GPAs.
Any help is greatly appreciated.
[TABLE="width: 500"]
<tbody>[TR]
[TD]123888[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]OTHER US[/TD]
[TD]4[/TD]
[/TR]
[TR]
[TD]KSU[/TD]
[TD]3.92[/TD]
[/TR]
[TR]
[TD]378288[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]CHAMPAGNE-URBANA[/TD]
[TD]3.8[/TD]
[/TR]
[TR]
[TD]999914[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]PORTLAND STATE[/TD]
[TD]3.4[/TD]
[/TR]
[TR]
[TD]DARTMOUTH[/TD]
[TD]3.6[/TD]
[/TR]
[TR]
[TD]NORTHWESTERN[/TD]
[TD]3.8[/TD]
[/TR]
</tbody>[/TABLE]
into this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]123888[/TD]
[TD]OTHER US[/TD]
[TD]4[/TD]
[TD]KSU[/TD]
[TD]3.92[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]378288[/TD]
[TD]CHAMPAGNE-URBANA[/TD]
[TD]3.8[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]999914[/TD]
[TD]PORTLAND STATE[/TD]
[TD]3.4[/TD]
[TD]DARTMOUTH[/TD]
[TD]3.6[/TD]
[TD]NORTHWESTERN[/TD]
[TD]3.8[/TD]
[/TR]
</tbody>[/TABLE]
Is this possible through a formula or a macro? I'm not too savvy with VBA, but am willing to give that a go if it would be easier. The thing that makes this difficult (at least for me) is that some IDs have multiple schools/GPAs.
Any help is greatly appreciated.