Hello,
I have a linking table between two other tables that require a many to many relationship. All i am storing in this linking table are the ids from the original table.
My problem is that i need the set of linking data to be displayed in a list box (or combo box if i have to). I've created a query that shows the required data, and instead of displaying the ids displays helpful information, taken from the original tables. However, if i use this query to populate the list box, it only displays the id, not the associated information from the original tables.
to clarify:
1 West Ham is playing 2 QPR, therefore i have stored in my linking table
1 2
However the 1 and the 2 have no intrinsic meaning, and i would like to display
West Ham QPR
This works when i run the query, but in the list box is shown as 1 2.
I'm sure i could overcome it with a few dlookup() statements, but i am beginning to learn that an overuse of these takes up a lot of resources, so am loathe to do it in this case.
Do i have any other options.
Anna
I have a linking table between two other tables that require a many to many relationship. All i am storing in this linking table are the ids from the original table.
My problem is that i need the set of linking data to be displayed in a list box (or combo box if i have to). I've created a query that shows the required data, and instead of displaying the ids displays helpful information, taken from the original tables. However, if i use this query to populate the list box, it only displays the id, not the associated information from the original tables.
to clarify:
1 West Ham is playing 2 QPR, therefore i have stored in my linking table
1 2
However the 1 and the 2 have no intrinsic meaning, and i would like to display
West Ham QPR
This works when i run the query, but in the list box is shown as 1 2.
I'm sure i could overcome it with a few dlookup() statements, but i am beginning to learn that an overuse of these takes up a lot of resources, so am loathe to do it in this case.
Do i have any other options.
Anna