Hi
I have a table of this kind:
ID | Hair | Eyes | Shoe Size | Factor
------------------------------------------
1 | Blnd | Blue | 11 | 1.2
2 | Black | Green | 9 | 1.9
3 | Brown | Hazel | 10 | 2.1
etc
What I want to do is have a crosstab query, that will output ID as my row headings, and the information contained in Hair, Eyes, Shoe Size fields as column headings. So I will have the following coluns:
ID, Blnd, Black, Brown, Blue, Green, Hazel, 11, 9, 10...
The Factor field would go inside the query and will be repeated for every instance (one to many joint):
2.1 will be in the Brown, Hazel, 10 columns....
Is it possible?
I have a table of this kind:
ID | Hair | Eyes | Shoe Size | Factor
------------------------------------------
1 | Blnd | Blue | 11 | 1.2
2 | Black | Green | 9 | 1.9
3 | Brown | Hazel | 10 | 2.1
etc
What I want to do is have a crosstab query, that will output ID as my row headings, and the information contained in Hair, Eyes, Shoe Size fields as column headings. So I will have the following coluns:
ID, Blnd, Black, Brown, Blue, Green, Hazel, 11, 9, 10...
The Factor field would go inside the query and will be repeated for every instance (one to many joint):
2.1 will be in the Brown, Hazel, 10 columns....
Is it possible?