I have a database with 10 tables and I need to put them into one big table so that they can be exported to Excel as a spreadsheet. The problem is that when I use a query to do it, the number of records mushroomed.
What I have is something like this:
ID field1 field2 field3
1 A H AA
1 A H AB
1 A H AC
1 A G AA
1 A G AB
I wonder if I could expand the fields so that I can have just one record for all information above. It should look something like this:
ID field1 field2A field2B field3A field3B field3C
1 A H G AA AB AC
Is it possible to achieve this? If yes, how can I do it?
Thank you very much.
Kuan
What I have is something like this:
ID field1 field2 field3
1 A H AA
1 A H AB
1 A H AC
1 A G AA
1 A G AB
I wonder if I could expand the fields so that I can have just one record for all information above. It should look something like this:
ID field1 field2A field2B field3A field3B field3C
1 A H G AA AB AC
Is it possible to achieve this? If yes, how can I do it?
Thank you very much.
Kuan