I am trying to create a report out of a table of data.
My data looks like this:
Item name | Price Level
Apple | Fruit
Orange | Fruit
Coke | Soda
Sprite |Soda
Budweiser | Dom Beer
Heineken | Import Beer
I need the report to look like this:
Fruit | Soda | Dom Beer | Import Beer
Apple | Coke |Budweiser | Heineken
Orange | Sprite
The data data has around 1000 items with 80+ price levels
I tried a pivot table but I can't get items to list to list inder the level instead of on the rows.
I tried doing index lookups but it quickly got very complicated to fill the rows under the price level heading because I didn't know how to easily vlookup or index lookup the required qty of items that had the price level for that column.
Any suggestions? I need to quickly be able to put this data from a DBF database into a worksheet table and automatically have the columnar report display. Filtering the source table is not a solution I want to visit because the report needs to be output multiple times and having to filter/copy/paste repeat 80 times will not work.
My data looks like this:
Item name | Price Level
Apple | Fruit
Orange | Fruit
Coke | Soda
Sprite |Soda
Budweiser | Dom Beer
Heineken | Import Beer
I need the report to look like this:
Fruit | Soda | Dom Beer | Import Beer
Apple | Coke |Budweiser | Heineken
Orange | Sprite
The data data has around 1000 items with 80+ price levels
I tried a pivot table but I can't get items to list to list inder the level instead of on the rows.
I tried doing index lookups but it quickly got very complicated to fill the rows under the price level heading because I didn't know how to easily vlookup or index lookup the required qty of items that had the price level for that column.
Any suggestions? I need to quickly be able to put this data from a DBF database into a worksheet table and automatically have the columnar report display. Filtering the source table is not a solution I want to visit because the report needs to be output multiple times and having to filter/copy/paste repeat 80 times will not work.