All, I have a table that lists orders and which stage of production processing they have gone through and a create date for each record, like so
order # stage create date
1234 StartProofing 3/29/2011
1235 StartProofing 3/29/2011
1234 EndProofing 3/30/2011
1234 ProofApproved 4/1/2011
1236 StartProofing 3/29/2011
1237 StartProofing 3/29/2011
1235 EndProofing 3/30/2011
1235 ProofApproved 3/31/2011
What I want to do is show each order, the date for StartProofing, the date for EndProofing and the date for ProofApproved, like so
order # SPDate EPDate PADate
1234 3/29/2011 3/30/2011 4/1/2011
1235 3/29/2011 3/30/2011 3/31/2011
Can this be done as a crosstab? A Union?
It all comes from the same table.
David Pimental
(US, Oh)
order # stage create date
1234 StartProofing 3/29/2011
1235 StartProofing 3/29/2011
1234 EndProofing 3/30/2011
1234 ProofApproved 4/1/2011
1236 StartProofing 3/29/2011
1237 StartProofing 3/29/2011
1235 EndProofing 3/30/2011
1235 ProofApproved 3/31/2011
What I want to do is show each order, the date for StartProofing, the date for EndProofing and the date for ProofApproved, like so
order # SPDate EPDate PADate
1234 3/29/2011 3/30/2011 4/1/2011
1235 3/29/2011 3/30/2011 3/31/2011
Can this be done as a crosstab? A Union?
It all comes from the same table.
David Pimental
(US, Oh)