davidrsutton
Programmer
Hi,
I have based a table on a query that displays info as below:
ID Field1 Field2 Field3 Field4 Field 5 ...
1 100 200 300 400
1 100 200 300 400
1 100 200 300 400
1 100 200 300 400
2 100 200
2 100 200
3... and so on, the number of lines for an ID appears depending on how many values the row has. Row (ID) 1 has 4 values so has 4 rows.
Is it possible to write some sneaky query to present the above information in such a way:
ID Field
1 100
1 200
1 300
1 400
2 100
2 200
3...
Any help would be be very greatly appreciated!
Many thanks in advance,
Dave.
I have based a table on a query that displays info as below:
ID Field1 Field2 Field3 Field4 Field 5 ...
1 100 200 300 400
1 100 200 300 400
1 100 200 300 400
1 100 200 300 400
2 100 200
2 100 200
3... and so on, the number of lines for an ID appears depending on how many values the row has. Row (ID) 1 has 4 values so has 4 rows.
Is it possible to write some sneaky query to present the above information in such a way:
ID Field
1 100
1 200
1 300
1 400
2 100
2 200
3...
Any help would be be very greatly appreciated!
Many thanks in advance,
Dave.