G
Guest
I have a 2 field table: ID and item
this table is a "child" table. . . therefore the ID field can have the same
value multiple times. Additionally, there is a limit of 4 itmes per customer.
ID item
3401 82320
3401 79321
3401 86732
3402 52350
3402 49325
3402 76512
3402 91517
I want to have the result of a query list each ID uniquely once, and all the
items associated with it in that same output record:
ID item_1 item_2 item_3 item_4
3401 82320 79321 86732
3402 52350 49325 76512 91517
There used to be a 4GL named FOCUS. In Focus, you could write:
Table File MAINTABLE
List item across
by ID
end
and it would give me what I am looking for.
How do I do this in access?
this table is a "child" table. . . therefore the ID field can have the same
value multiple times. Additionally, there is a limit of 4 itmes per customer.
ID item
3401 82320
3401 79321
3401 86732
3402 52350
3402 49325
3402 76512
3402 91517
I want to have the result of a query list each ID uniquely once, and all the
items associated with it in that same output record:
ID item_1 item_2 item_3 item_4
3401 82320 79321 86732
3402 52350 49325 76512 91517
There used to be a 4GL named FOCUS. In Focus, you could write:
Table File MAINTABLE
List item across
by ID
end
and it would give me what I am looking for.
How do I do this in access?