two tables

  • Thread starter Thread starter ddickens
  • Start date Start date
D

ddickens

Does anyone know how to use two columns from two tables to
populate a combo box in a form????
 
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
 
Back
Top