I'm pretty sure i'm off conceptually here....need a little help.
I have a database that manages customer returns (RMA's)
I want a form that has 2 combo boxes (cascading) where the user selects a customer from the first one, then the 2nd returns all the part numbers associated with that customer, the user selects a part number, and a RMA report is generated for it.
For the first one, i have a query as the row source:
SELECT DISTINCT PartNumbers.Customer
FROM PartNumbers
ORDER BY PartNumbers.Customer;
when I run the query, it works correctly. But when I open the form, the combo box is blank. I'm pretty sure the bound column setting is correct. Im guessing i have the control source wrong , or maybe some settings on the form itself?