wildexodus
Registered User.
- Local time
- Today, 22:29
- Joined
- Feb 6, 2003
- Messages
- 74
I have a table (tblOrderDetails) with a foreign key in it (ProductID) which i am using to lookup up data from another table. So far in the Row source of the lookup ive got the following code:
SELECT DISTINCTROW [ProductID], [ProductName] FROM tblProducts;
I want to also display the Product Type. In tblProducts there is a foreign key (ProductTypeID) which i am using in this table to list all the product types. What i need is for the product types to also be displayed in a column of the combo box for the lookup mentioned above.
Is this possible?
SELECT DISTINCTROW [ProductID], [ProductName] FROM tblProducts;
I want to also display the Product Type. In tblProducts there is a foreign key (ProductTypeID) which i am using in this table to list all the product types. What i need is for the product types to also be displayed in a column of the combo box for the lookup mentioned above.
Is this possible?