Access 200 Help

M

Mike T

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?
 
O

Ofer

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.
 
Top