I have an Access 2010 form which has a combobox listing three columns:
- ID
- first name
- last name
The combo box is bound to a table containing this data. The ID column in the combo box is hidden, it only shows the first and last name.
When the user selects a row only the the first name is shown. in the property section, I chose:
- Column Count: 3
- Column widths:0;3,3
- Bound Column: 1
I made another text field and in the combobox I wrote the following vbcode:
text=combo.value
that shows in the text field the chosen ID.
I want to show in another field (text\combo?) the last name. How can I do that?