> Rick, Thanks for your quick response. Maybe my initial question
> wasn't clear. I don't want to store information from the stores or
[quoted text clipped - 8 lines]
>
> I hope this clears up my question.

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
I'm sorry, I'm just not understanding. I believe my confusion is with the
relationships.
The primary table is tblMaintenance. The PK's and FK's are as noted below.
I want to create a form from tblMaintenance with a combo box to choose store
number and Store city, and another combo box for Vendor Name, phone, etc.
I don't know how to create the combo boxes since the main table is
Maintenance.
Thanks again... sorry for the confusion.
> > Rick, Thanks for your quick response. Maybe my initial question
> > wasn't clear. I don't want to store information from the stores or
[quoted text clipped - 17 lines]
> Is that what you are trying? If not why not? What are you trying and what
> results are you getting?
Rick Brandt - 02 Feb 2008 19:13 GMT
> I'm sorry, I'm just not understanding. I believe my confusion is
> with the relationships.
[quoted text clipped - 10 lines]
>
> Thanks again... sorry for the confusion.
You add two ComboBoxes bound to VendorID and StoreID respectively and then you
give them RowSources that use tblVendors and tblStores to produce the list of ID
choices. You can then add additional columns from those tables to the ComboBox
RowSources (hidden or shown upon your preference) and those additional columns
can be referenced using the .Column(n) syntax that I gave you earlier.
The ComboBox wizard will simplify the creation of the multi-column aspects of
this for you.

Signature
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
John W. Vinson - 02 Feb 2008 20:41 GMT
>I'm sorry, I'm just not understanding. I believe my confusion is with the
>relationships.
[quoted text clipped - 6 lines]
>I don't know how to create the combo boxes since the main table is
>Maintenance.
That's irrelevant.
A Combo Box typically *takes* one field's data from one table - its Rowsource
- and *puts* that value into a different table's field, its Control Source.
If you're assuming that a combo box on the Maintenance form must pull its data
from the Maintenance table (as well as putting data into the Maintenance
table), revise your assumption! The combo's rowsource can be based on any
table in the database, or on a table linked from another database.
John W. Vinson [MVP]