I have a Forecast table that has the the previous year, current year, and future year forecast figures for items. I have a query that simply returns the current month forecast and the future 11 months.
I need to be able to create a report that will list one row per item with the quantities in seperate columns. I have been scratching my head on how to achieve this. If you have any ideas please let me know!!!
Thanks!
Goal Layout
------------
Item | Nov | Dec | Jan | Feb | Mar | ... | Oct
Table Schema
------------
Item_ID
Date_ID
Quantity
Example Data
------------
01001 | 2006-11-01 | 9382
01001 | 2006-12-01 | 2384
01001 | 2007-01-01 | 5812
01001 | 2007-02-01 | 3124
.
.
01001 | 2007-10-01 | 1578
I need to be able to create a report that will list one row per item with the quantities in seperate columns. I have been scratching my head on how to achieve this. If you have any ideas please let me know!!!
Thanks!
Goal Layout
------------
Item | Nov | Dec | Jan | Feb | Mar | ... | Oct
Table Schema
------------
Item_ID
Date_ID
Quantity
Example Data
------------
01001 | 2006-11-01 | 9382
01001 | 2006-12-01 | 2384
01001 | 2007-01-01 | 5812
01001 | 2007-02-01 | 3124
.
.
01001 | 2007-10-01 | 1578