I want to write value to the table based on combo box

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

Guest

I want users to choose a value from the value box in the form and I want that
value to be written to the table. How do I accomplish this? Right now the
value can be picked from the combo box but the table field remains blank.
 
What is the control source of the combo box? Is your box bound to a field
in your table? If not, the selections would have no place to save.

Did you use the wizard to build it? It will do all the work for you.
 
Monia,
You need to "bind" the Combobox to a field in your table. For example,
if the combo allows the user to select a CarModel, then the ControlSource
for the cpmbo would be the CarModel field from your table.
 
Back
Top