Access 200 Help

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I get Access to return the text selection from a combo box to the
linked table, instead of returning the selection # of the combo box?
 
It depend on the location of the text field in the combo
You can use this
Me.ComboName 'return the first field in the source of the combo
Or
Me.ComboName.column(0)

' To rturn the second field use
Me.ComboName.column(1)

You can select any value starting from column(0) which is the first field.
 
Back
Top