> your table relationships sound correct to me. just to clear this up at the
> start: hopefully you are not using any Lookup fields in any of your tables.
[quoted text clipped - 61 lines]
> > form's design goals or I need figure out how to build the correct
> > relationships. All help is gratefully appreciated.
> Any suggestions why the A address subform & the Z address subform don't
> display multiple records when multiple records are displayed in the
> orderdetails subform?
the address subforms are behaving correctly. no matter how many records are
displayed in the OrderDetails subform, only one record at a time is the
"current" record (that's why a form has a Current property, to refer to the
record that currently has the focus). so, in the address subforms, the
LinkMasterFields property settings are referring to only the values of those
fiels *in the Current record of the OrderDetails subform*.
hth
> Thanks tina, the linkchild/linkmaster fields did work when using the
> declarations you suggested. That is exactly how I had hoped for those
[quoted text clipped - 24 lines]
> >
> > next, in the "A address" subform, set the LinkMasterFields to
Forms!MainFormName!OrderDetailsSubformCONTROLName.Form!LocationAComboBoxName
> > (note that the above all goes on one line.) substitute the correct form,
> > subform control, and control names, of course.
[quoted text clipped - 44 lines]
> > > form's design goals or I need figure out how to build the correct
> > > relationships. All help is gratefully appreciated.