Update record based on input

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

Guest

I have a table with records that include a division number and a division
name. I would like the division number to be based on input for the division
name. For example, on the input form, the person selects a division from a
combo box, I want the division number to be automatically entered or updated.
Any ideas?
 
Make the combobox contain the division name and the division number as a
second column that does not have to be displayed.
Make the control source of a field on your form
=ComboBox.Column(1)
 
Perfect, that did the trick.

Dennis said:
Make the combobox contain the division name and the division number as a
second column that does not have to be displayed.
Make the control source of a field on your form
=ComboBox.Column(1)
 
Back
Top