Cascading Combo Query

R

Rpettis31

I have a combobox that will pull an order number cbo_OrderNumber then I have
a cascading box cbo_OrderLines that lists all the lines on the order. I am
not sure how I can I pull the item number for the OrderNumber and the
OrderLine.
This information is all on the same table tblDMRItemMaster.
 
J

Jeanette Cunningham

Hi,
the general explanation is that you use the value from the first combo to
apply a filter to the query that is the row source of the second combo.
Whatever value user chooses in the first value, forms the criteria for that
field in the query that is the row source for the second combo.
The second combo doesn't show all the records returned by its row source, it
only shows those records that match the value selected in the first combo.


Jeanette Cunningham -- Melbourne Victoria Australia
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top