Update record based on input

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

Guest

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)
 
G

Guest

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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top