Solved MS Access Unbound Combo Box (1 Viewer)

nector

Member
Local time
Today, 09:23
Joined
Jan 21, 2020
Messages
465
I want to use this unbound combo box on a subform for the purpose of looking up only because the same form support imported data, but when the users select the product name you find that that product name repeat itself in the second line which I do not want to see or happen. Any idea to stop this?

Here is the unbound combo box raw source

Code:
SELECT tblProducts.ProductID, tblProducts.ProductName, tblProducts.itemCd, tblProducts.itemClsCd
FROM tblProducts;


Unbound Combo Boxes.png
 
It's because it is unbound, you'll get the same data in each row.
On a datasheet this is quite messy to get around.

Have a search on the forum for potential solutions.
 
Ok thanks minty
 

Users who are viewing this thread

Back
Top Bottom