I have a rather significant amount of data in a spreadsheet that is poorly arranged. The current format has a company, a product name, and the ingredients listed afterwards. The ingredients all have their own column without a header. For instance, and I apologize this is not reflected below since I'm terrible at markup language, Column A would be labeled Manufacturer, Column B would be labeled as Product Name, Column C would be labeled Ingredients but then the rest of the columns are unlabeled.
Ultimately, I need to move the data to a new sheet, where data only appears in columns A, B, and C. The number of ingredients each product has varies.
I hope that the desired format helps.
Current Format:
1| Acme Inc. | ABC123 | Water | Sugar | Eggs | Salt
2| Acme Inc. | BCD456 | Cornmeal | Salt
3| JJ Baking | JJ4567 | Flour | Nuts | Fruit
Desired Format:
1| Acme Inc. | ABC123 | Water
2| Acme Inc. | ABC123 | Sugar
3| Acme Inc. | ABC123 | Eggs
4| Acme Inc. | ABC123 | Salt
5| Acme Inc. | BCD456 | Cornmeal
6| Acme Inc. | BCD456 | Salt
7| JJ Baking | JJ4567 | Flour
8| JJ Baking | JJ4567 | Nuts
9| JJ Baking | JJ4567 | Fruit