I have a large batch of product information that I am looking to reformat so that it can be imported to our website. Below is an example of the format that it is in now is:
[TABLE="width: 667"]
<colgroup><col><col><col></colgroup><tbody>[TR]
[TD]SKU Number[/TD]
[TD]AttributeName[/TD]
[TD]ProductAttributeValue[/TD]
[/TR]
[TR]
[TD]C01[/TD]
[TD]Width[/TD]
[TD]2.6"[/TD]
[/TR]
[TR]
[TD]C01[/TD]
[TD]Length[/TD]
[TD]4.4"[/TD]
[/TR]
[TR]
[TD]C01[/TD]
[TD]Type[/TD]
[TD]Delicate Duty[/TD]
[/TR]
[TR]
[TD]C01[/TD]
[TD]Color[/TD]
[TD]White[/TD]
[/TR]
[TR]
[TD]C06[/TD]
[TD]Length[/TD]
[TD]13.8"[/TD]
[/TR]
[TR]
[TD]C06[/TD]
[TD]Height[/TD]
[TD]5"[/TD]
[/TR]
[TR]
[TD]C06[/TD]
[TD]Type[/TD]
[TD]Switchable Clenaing[/TD]
[/TR]
[TR]
[TD]C06[/TD]
[TD]Color[/TD]
[TD]Yellow[/TD]
[/TR]
[TR]
[TD]C29[/TD]
[TD]Width[/TD]
[TD]0.875"[/TD]
[/TR]
[TR]
[TD]C29[/TD]
[TD]Height[/TD]
[TD]3.25"[/TD]
[/TR]
[TR]
[TD]C29[/TD]
[TD]Length[/TD]
[TD]4.875"[/TD]
[/TR]
[TR]
[TD]C29[/TD]
[TD]Type[/TD]
[TD]Scouring[/TD]
[/TR]
[TR]
[TD]C30[/TD]
[TD]Size[/TD]
[TD]2-7/8" x 2-7/8"[/TD]
[/TR]
[TR]
[TD]C30[/TD]
[TD]Color[/TD]
[TD]Yellow[/TD]
[/TR]
</tbody>[/TABLE]
....
The way I would wish for it to return is:
[TABLE="width: 748"]
<colgroup><col><col><col><col><col><col><col></colgroup><tbody>[TR]
[TD]SKU Number[/TD]
[TD]Color[/TD]
[TD]Width[/TD]
[TD]Length[/TD]
[TD]Type[/TD]
[TD]Height[/TD]
[TD]Size.....[/TD]
[/TR]
[TR]
[TD]C01[/TD]
[TD]White[/TD]
[TD]2.6"[/TD]
[TD]4.4"[/TD]
[TD]Delicate Duty[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C06[/TD]
[TD]Yellow[/TD]
[TD][/TD]
[TD]13.8"[/TD]
[TD]Switchable Clenaing[/TD]
[TD]5"[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C29[/TD]
[TD][/TD]
[TD]0.875"[/TD]
[TD]4.875"[/TD]
[TD]Scouring[/TD]
[TD]3.25"[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C30[/TD]
[TD]Yellow[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]2-7/8" x 2-7/8"[/TD]
[/TR]
</tbody>[/TABLE]
No big deal right? Well, the problem that I am having is that there are 60,000+ unique "sku numbers" and 3500+ unique "attribute names". Meaning, that when complete, the spreadsheet will have 3500+ columns and 60,000+ Rows. I cannot do a crosstab query in Access because there is over 255 rows. And, attempting to do a vlookup or index/match is almost impossible because it would involve searching and calculating over 210 million cells.
Can anyone help me out with a solution? Thank you.
[TABLE="width: 667"]
<colgroup><col><col><col></colgroup><tbody>[TR]
[TD]SKU Number[/TD]
[TD]AttributeName[/TD]
[TD]ProductAttributeValue[/TD]
[/TR]
[TR]
[TD]C01[/TD]
[TD]Width[/TD]
[TD]2.6"[/TD]
[/TR]
[TR]
[TD]C01[/TD]
[TD]Length[/TD]
[TD]4.4"[/TD]
[/TR]
[TR]
[TD]C01[/TD]
[TD]Type[/TD]
[TD]Delicate Duty[/TD]
[/TR]
[TR]
[TD]C01[/TD]
[TD]Color[/TD]
[TD]White[/TD]
[/TR]
[TR]
[TD]C06[/TD]
[TD]Length[/TD]
[TD]13.8"[/TD]
[/TR]
[TR]
[TD]C06[/TD]
[TD]Height[/TD]
[TD]5"[/TD]
[/TR]
[TR]
[TD]C06[/TD]
[TD]Type[/TD]
[TD]Switchable Clenaing[/TD]
[/TR]
[TR]
[TD]C06[/TD]
[TD]Color[/TD]
[TD]Yellow[/TD]
[/TR]
[TR]
[TD]C29[/TD]
[TD]Width[/TD]
[TD]0.875"[/TD]
[/TR]
[TR]
[TD]C29[/TD]
[TD]Height[/TD]
[TD]3.25"[/TD]
[/TR]
[TR]
[TD]C29[/TD]
[TD]Length[/TD]
[TD]4.875"[/TD]
[/TR]
[TR]
[TD]C29[/TD]
[TD]Type[/TD]
[TD]Scouring[/TD]
[/TR]
[TR]
[TD]C30[/TD]
[TD]Size[/TD]
[TD]2-7/8" x 2-7/8"[/TD]
[/TR]
[TR]
[TD]C30[/TD]
[TD]Color[/TD]
[TD]Yellow[/TD]
[/TR]
</tbody>[/TABLE]
....
The way I would wish for it to return is:
[TABLE="width: 748"]
<colgroup><col><col><col><col><col><col><col></colgroup><tbody>[TR]
[TD]SKU Number[/TD]
[TD]Color[/TD]
[TD]Width[/TD]
[TD]Length[/TD]
[TD]Type[/TD]
[TD]Height[/TD]
[TD]Size.....[/TD]
[/TR]
[TR]
[TD]C01[/TD]
[TD]White[/TD]
[TD]2.6"[/TD]
[TD]4.4"[/TD]
[TD]Delicate Duty[/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C06[/TD]
[TD]Yellow[/TD]
[TD][/TD]
[TD]13.8"[/TD]
[TD]Switchable Clenaing[/TD]
[TD]5"[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C29[/TD]
[TD][/TD]
[TD]0.875"[/TD]
[TD]4.875"[/TD]
[TD]Scouring[/TD]
[TD]3.25"[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]C30[/TD]
[TD]Yellow[/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD]2-7/8" x 2-7/8"[/TD]
[/TR]
</tbody>[/TABLE]
No big deal right? Well, the problem that I am having is that there are 60,000+ unique "sku numbers" and 3500+ unique "attribute names". Meaning, that when complete, the spreadsheet will have 3500+ columns and 60,000+ Rows. I cannot do a crosstab query in Access because there is over 255 rows. And, attempting to do a vlookup or index/match is almost impossible because it would involve searching and calculating over 210 million cells.
Can anyone help me out with a solution? Thank you.