two tables

D

ddickens

Does anyone know how to use two columns from two tables to
populate a combo box in a form????
 
M

M Skabialka

Create a query with the information you need from the two tables, and use
that as the basis for your compbo.

Only one of the fields will stay displayed once you make a selection, but
you can place the other column's info elsewhere also using code in the after
update event.
e.g. [Otherfield] = Combo7.Column(1)

NOTE: Column(0) is the first column.

HTH
Mich
 

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