I have a planning tool that was written in Excel. It has planned production by day for a given product. The products are in column A and the various days are in column B, C, D, ... Not every product is produced each day. I need to build an output file that lists which products are to be produced by day in a single set of columns (column A is the product, ColumnB is the date and column C is the amount. See below.
Planning Sheet:
ColA ColB ColC ColD
Product Day1 Day2 Day3
ProdA 10 5
ProdB 4 3
ProdC 2 6 8
What I need to produce is
ColA ColB ColC
Product Date Qty
ProdA Day1 10
ProdA Day3 5
ProdB Day1 4
ProdB Day2 3
ProdC Day1 2
ProdC Day2 6
ProdC Day3 8
What type of code or forumlas could I use. I'm not a very profficient VB coder. I was thinking of copying and pasting the data and then sorting it appropriately. What better suggestions do you have?
Thanks,
Planning Sheet:
ColA ColB ColC ColD
Product Day1 Day2 Day3
ProdA 10 5
ProdB 4 3
ProdC 2 6 8
What I need to produce is
ColA ColB ColC
Product Date Qty
ProdA Day1 10
ProdA Day3 5
ProdB Day1 4
ProdB Day2 3
ProdC Day1 2
ProdC Day2 6
ProdC Day3 8
What type of code or forumlas could I use. I'm not a very profficient VB coder. I was thinking of copying and pasting the data and then sorting it appropriately. What better suggestions do you have?
Thanks,