I have two tables Customer and Notes
Customer Table has: CustomerID, Customer Name
Notes Table has: NoteID, Customer ID, Notes
There is already a 1 to many relationship based on CustomerID
I want to create a form that adds entries into the Notes table where the user can enter in the CustomerID and the Customer name will auto populate.
I originally tried to do this by having the Customer ID in the form be a combo box selecting from the customer table.
I then changed the control source of the Customer Name field to comboboxname.column(2)
This auto filled the form correctly, but it would not save that data into the Notes table.
What am I doing wrong?
Customer Table has: CustomerID, Customer Name
Notes Table has: NoteID, Customer ID, Notes
There is already a 1 to many relationship based on CustomerID
I want to create a form that adds entries into the Notes table where the user can enter in the CustomerID and the Customer name will auto populate.
I originally tried to do this by having the Customer ID in the form be a combo box selecting from the customer table.
I then changed the control source of the Customer Name field to comboboxname.column(2)
This auto filled the form correctly, but it would not save that data into the Notes table.
What am I doing wrong?