I have a form of sales data for various products. When a new product is entered into the form, the supplier is also entered from a combo box. The combo box is populated by a supplier table [sup_tbl]. I want to be able to see a record of each product which indicates the supplier source. However, when I run the query, the supplier list contains only a number (Not the name). The underlying table shows the correct vendor's name.
The number that is shown in the query seems to come from an Access derived sequence beginning with 0. (Not the primary key, auto number.)
I'm not sure how to force the query to indicate the name instead of the number. I tried adding the [sup_tbl] to the querry and linking them but it produces a data type error. the following is the sql statement:
SELECT Prod_Data.[Closed Date], Prod_Data.Prod_Name, Prod_Data.Symbol, Prod_Data.Rec_By, FROM Prod_Data
ORDER BY Prod_Data.Closed DESC , Prod_Data.Prod_Name;
Thanks for your help, Bill
The number that is shown in the query seems to come from an Access derived sequence beginning with 0. (Not the primary key, auto number.)
I'm not sure how to force the query to indicate the name instead of the number. I tried adding the [sup_tbl] to the querry and linking them but it produces a data type error. the following is the sql statement:
SELECT Prod_Data.[Closed Date], Prod_Data.Prod_Name, Prod_Data.Symbol, Prod_Data.Rec_By, FROM Prod_Data
ORDER BY Prod_Data.Closed DESC , Prod_Data.Prod_Name;
Thanks for your help, Bill