S
Steve
Greetings:
I would like to concatenate the "many" side of a 1:Many relationship for
display in a listbox as follows:
Basket 1: apples;oranges;bannanas
Basket 2: staplers; paperclips; stickynotes
The Field Structure of the tables are as follows:
tblBasket:
idsBasketID - Autonumber; key
chrBasketName
tblItems:
idsItemID - Autonumber; key
intBasketID - Integer; Foreign Key
chrItemName
Where tblBasket and tblItems are linked in a 1:many relationship. The
contents of the tables are shown below.
tblBasket
idsBasketID chrBasketName
1 Basket 1
2 Basket 2
tblItems
idsItemID intBasketID chrItemName
1 1 apples
2 1 oranges
3 1 bananas
4 2 staplers
5 2 paperclips
6 2 stickynotes
I would like to concatenate the "many" side of a 1:Many relationship for
display in a listbox as follows:
Basket 1: apples;oranges;bannanas
Basket 2: staplers; paperclips; stickynotes
The Field Structure of the tables are as follows:
tblBasket:
idsBasketID - Autonumber; key
chrBasketName
tblItems:
idsItemID - Autonumber; key
intBasketID - Integer; Foreign Key
chrItemName
Where tblBasket and tblItems are linked in a 1:many relationship. The
contents of the tables are shown below.
tblBasket
idsBasketID chrBasketName
1 Basket 1
2 Basket 2
tblItems
idsItemID intBasketID chrItemName
1 1 apples
2 1 oranges
3 1 bananas
4 2 staplers
5 2 paperclips
6 2 stickynotes