Hi All
Need your help
I am trying to create a union All query which I can do no problem example below
What I need to do if possible is have the Title name as the row values i.e. [42337 Sales Volume] will show 42337 in the row values down for the first select statement then 42336 listed for the second select this will need a new column
Please I need you expertise on this
Thank you
Code:
SELECT "Week39" AS Week_No, [Week 39].[Retail Outlet Number], [Week 39].[Store Name], [Week 39].[Base Product Number], [Week 39].[Long Description], [Week 39].[42337 Sales Volume], [Week 39].[42337 Store Stock Volume], [Week 39].[42337 Store Stock Volume]
FROM [Week 39];
Union All
SELECT "Week39" AS Week_No, [Week 39].[Retail Outlet Number], [Week 39].[Store Name], [Week 39].[Base Product Number], [Week 39].[Long Description], [Week 39].[42336 Sales Volume], [Week 39].[42336 Store Stock Volume], [Week 39].[42336 Store Stock Volume]
FROM [Week 39];