I have a database which I have to enter about 5K line items in a specific format. I am not sure how to translate my raw data into the acceptable format. I have only moderate Excel skills, and know little about macros/VBA. Any help is greatly appreciated!
Current format:
[TABLE="width: 300"]
<tbody>[TR]
[TD="width: 98, bgcolor: transparent"]Customer/Fcst
[/TD]
[TD="width: 74, bgcolor: transparent"]Jan-16
[/TD]
[TD="width: 74, bgcolor: transparent"]Feb-16
[/TD]
[TD="width: 74, bgcolor: transparent"]Mar-16
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]ABC
[/TD]
[TD="bgcolor: transparent"]27,000
[/TD]
[TD="bgcolor: transparent"]28,500
[/TD]
[TD="bgcolor: transparent"]33,789
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]XXX
[/TD]
[TD="bgcolor: transparent"]48,000
[/TD]
[TD="bgcolor: transparent"]49,789
[/TD]
[TD="bgcolor: transparent"]47,125
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]CBA
[/TD]
[TD="bgcolor: transparent"]2,000
[/TD]
[TD="bgcolor: transparent"]2,478
[/TD]
[TD="bgcolor: transparent"]2,698
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]RST
[/TD]
[TD="bgcolor: transparent"]78,045
[/TD]
[TD="bgcolor: transparent"]79,045
[/TD]
[TD="bgcolor: transparent"]77,456
[/TD]
[/TR]
</tbody>[/TABLE]
Needed Format:
[TABLE="width: 220"]
<tbody>[TR]
[TD="width: 98, bgcolor: transparent"]Customer
[/TD]
[TD="width: 74, bgcolor: transparent"]Month
[/TD]
[TD="width: 74, bgcolor: transparent"]Fcst
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]ABC
[/TD]
[TD="bgcolor: transparent"]Jan-16
[/TD]
[TD="bgcolor: transparent"]27,000
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]XXX
[/TD]
[TD="bgcolor: transparent"]Jan-16
[/TD]
[TD="bgcolor: transparent"]48,000
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]CBA
[/TD]
[TD="bgcolor: transparent"]Jan-16
[/TD]
[TD="bgcolor: transparent"]2,000
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]RST
[/TD]
[TD="bgcolor: transparent"]Jan-16
[/TD]
[TD="bgcolor: transparent"]78,045
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]ABC
[/TD]
[TD="bgcolor: transparent"]Feb-16
[/TD]
[TD="bgcolor: transparent"]28,500
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]XXX
[/TD]
[TD="bgcolor: transparent"]Feb-16
[/TD]
[TD="bgcolor: transparent"]49,789
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]CBA
[/TD]
[TD="bgcolor: transparent"]Feb-16
[/TD]
[TD="bgcolor: transparent"]2,478
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]RST
[/TD]
[TD="bgcolor: transparent"]Feb-16
[/TD]
[TD="bgcolor: transparent"]79,045
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]ABC
[/TD]
[TD="bgcolor: transparent"]Mar-16
[/TD]
[TD="bgcolor: transparent"]33,789
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]XXX
[/TD]
[TD="bgcolor: transparent"]Mar-16
[/TD]
[TD="bgcolor: transparent"]47,125
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]CBA
[/TD]
[TD="bgcolor: transparent"]Mar-16
[/TD]
[TD="bgcolor: transparent"]2,698
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]RST
[/TD]
[TD="bgcolor: transparent"]Mar-16
[/TD]
[TD="bgcolor: transparent"]77,456
[/TD]
[/TR]
</tbody>[/TABLE]
Current format:
[TABLE="width: 300"]
<tbody>[TR]
[TD="width: 98, bgcolor: transparent"]Customer/Fcst
[/TD]
[TD="width: 74, bgcolor: transparent"]Jan-16
[/TD]
[TD="width: 74, bgcolor: transparent"]Feb-16
[/TD]
[TD="width: 74, bgcolor: transparent"]Mar-16
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]ABC
[/TD]
[TD="bgcolor: transparent"]27,000
[/TD]
[TD="bgcolor: transparent"]28,500
[/TD]
[TD="bgcolor: transparent"]33,789
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]XXX
[/TD]
[TD="bgcolor: transparent"]48,000
[/TD]
[TD="bgcolor: transparent"]49,789
[/TD]
[TD="bgcolor: transparent"]47,125
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]CBA
[/TD]
[TD="bgcolor: transparent"]2,000
[/TD]
[TD="bgcolor: transparent"]2,478
[/TD]
[TD="bgcolor: transparent"]2,698
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]RST
[/TD]
[TD="bgcolor: transparent"]78,045
[/TD]
[TD="bgcolor: transparent"]79,045
[/TD]
[TD="bgcolor: transparent"]77,456
[/TD]
[/TR]
</tbody>[/TABLE]
Needed Format:
[TABLE="width: 220"]
<tbody>[TR]
[TD="width: 98, bgcolor: transparent"]Customer
[/TD]
[TD="width: 74, bgcolor: transparent"]Month
[/TD]
[TD="width: 74, bgcolor: transparent"]Fcst
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]ABC
[/TD]
[TD="bgcolor: transparent"]Jan-16
[/TD]
[TD="bgcolor: transparent"]27,000
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]XXX
[/TD]
[TD="bgcolor: transparent"]Jan-16
[/TD]
[TD="bgcolor: transparent"]48,000
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]CBA
[/TD]
[TD="bgcolor: transparent"]Jan-16
[/TD]
[TD="bgcolor: transparent"]2,000
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]RST
[/TD]
[TD="bgcolor: transparent"]Jan-16
[/TD]
[TD="bgcolor: transparent"]78,045
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]ABC
[/TD]
[TD="bgcolor: transparent"]Feb-16
[/TD]
[TD="bgcolor: transparent"]28,500
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]XXX
[/TD]
[TD="bgcolor: transparent"]Feb-16
[/TD]
[TD="bgcolor: transparent"]49,789
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]CBA
[/TD]
[TD="bgcolor: transparent"]Feb-16
[/TD]
[TD="bgcolor: transparent"]2,478
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]RST
[/TD]
[TD="bgcolor: transparent"]Feb-16
[/TD]
[TD="bgcolor: transparent"]79,045
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]ABC
[/TD]
[TD="bgcolor: transparent"]Mar-16
[/TD]
[TD="bgcolor: transparent"]33,789
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]XXX
[/TD]
[TD="bgcolor: transparent"]Mar-16
[/TD]
[TD="bgcolor: transparent"]47,125
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]CBA
[/TD]
[TD="bgcolor: transparent"]Mar-16
[/TD]
[TD="bgcolor: transparent"]2,698
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]RST
[/TD]
[TD="bgcolor: transparent"]Mar-16
[/TD]
[TD="bgcolor: transparent"]77,456
[/TD]
[/TR]
</tbody>[/TABLE]