Combo Box Synchronization

G

Guest

I have two combo boxes in a subform with the combo box list of the second box
dependent on the selection of the first. It works great when I test it in
the sub form. However, when I open the main form, the second box shows only
a null value.
 
G

Guest

How did you filter the second combo, if you have reference to the first combo
as
Select * From TableName Where FieldName = Forms![SubFormName]![FieldName]

Then the path will change when the sub is open with the main form
Select * From TableName Where FieldName =
Forms![MainFormName]![SubFormName].Form![FieldName]
 

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