I am having a very hard time - what I have are some projects that have multiple values per row:
PID QTY Date
12345 100 05/01/05
45678 200 05/02/05
12345 150 04/28/05
12345 175 04/25/05
What I would like to do is have one row with multiple columns:
PID QTY1 Date1 QTY2 Date2 QTY3 Date3
12345 100 5/01/05 150 4/28/2005 175 4/25/2005
45678 200 05/02/05
I don't even know where I begin... can someone please make a suggestion, there are an unknown number of columns... that I guess should be created using a variable of some sort maybe a count of PID?
PID QTY Date
12345 100 05/01/05
45678 200 05/02/05
12345 150 04/28/05
12345 175 04/25/05
What I would like to do is have one row with multiple columns:
PID QTY1 Date1 QTY2 Date2 QTY3 Date3
12345 100 5/01/05 150 4/28/2005 175 4/25/2005
45678 200 05/02/05
I don't even know where I begin... can someone please make a suggestion, there are an unknown number of columns... that I guess should be created using a variable of some sort maybe a count of PID?