H
hatemma
I would be grateful for help with creating a query that does the following:
transpose rows to columns and maintain the ID colume
Table
ID Date Amount Colour nature
2 15/10/04 20 9 N
2 17/03/06 12 6 H
1 15/10/04 15 8 N
1 17/03/06 65 5 L
1 3/9/08 98 63 N
Query Output
ID Character 15/10/2004 17/03/2006 03/09/2008
1 Amount 15 65 98
1 Colour 8 5 63
1 nature N L N
2 Amount 20 12
2 Colour 9 6
2 nature N H
Many thanks for your help
transpose rows to columns and maintain the ID colume
Table
ID Date Amount Colour nature
2 15/10/04 20 9 N
2 17/03/06 12 6 H
1 15/10/04 15 8 N
1 17/03/06 65 5 L
1 3/9/08 98 63 N
Query Output
ID Character 15/10/2004 17/03/2006 03/09/2008
1 Amount 15 65 98
1 Colour 8 5 63
1 nature N L N
2 Amount 20 12
2 Colour 9 6
2 nature N H
Many thanks for your help