Multiple combo boxes on a form

  • Thread starter Thread starter Malt
  • Start date Start date
M

Malt

I have a form based on two tables. I would like a combo box for a field from
each table that will fill in various fields from the relevant table. Does
anyone have any suggestions?
 
I have a form based on two tables. I would like a combo box for a field from
each table that will fill in various fields from the relevant table. Does
anyone have any suggestions?

Why would you want to do that?

It sounds like you're trying to store data from one table redundantly into a
second table. This is essentially *never* necessary. You can *display* fields
from the combo's table by including the fields in the combo's row source; put
textboxes on screen with control sources like

=comboboxname.Column(n)

where n is the zero based index of the field. All you need to store is the
foreign key field value from the combo.

John W. Vinson [MVP]
 
mmmmmm
Malt said:
I have a form based on two tables. I would like a combo box for a field
from
each table that will fill in various fields from the relevant table. Does
anyone have any suggestions?
 

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

Back
Top