I have a client that has a table that is a list of items and a column for each week (Mondays date) and then for each item they report "demand" for that week.
Item \ 4/28/14 \ 5/5/14 \ etc...
ABC \ 500 \ 50 CBA \ 25 \ 200
I need to convert it to
Item \ Date \ Qty
ABC \ 4/28/14\ 500
ABC \ 5/5/14 \ 50
CBA \ 4/28/14\ 25
CBA \ 5/5/14\ 200
For the life of me I can't seem to wrap my brain around how to do this.. I am assuming it is some kind of crosstab or pivot function but I am at a loss and can't even figure out how to search for the solution.
Item \ 4/28/14 \ 5/5/14 \ etc...
ABC \ 500 \ 50 CBA \ 25 \ 200
I need to convert it to
Item \ Date \ Qty
ABC \ 4/28/14\ 500
ABC \ 5/5/14 \ 50
CBA \ 4/28/14\ 25
CBA \ 5/5/14\ 200
For the life of me I can't seem to wrap my brain around how to do this.. I am assuming it is some kind of crosstab or pivot function but I am at a loss and can't even figure out how to search for the solution.