Hi,
I have database with monthly sales data tables within it.
These sales data tables are organised as follows.
I have a union query that provides a full list of all the Item Codes, but also wanted to be able to query the sales values for those items by month for user defined countries.
for example my "ideal" output would look like the following
where the month relates to the same country across all relvent tables.
I have database with monthly sales data tables within it.
These sales data tables are organised as follows.
Code:
Item code; Description; Country1; Country2; Country3..etc 1234; Item1; Sales Value; Sales Value; Sales Value ..etc
for example my "ideal" output would look like the following
Code:
Item Code; Description; Month1; Month2; Month3.. etc
Comment