I've created a form which allows users to add new records to tblCustomer. It is also used to filter records from tblCustomer using a subform and a search form in the footer of the main form. It can also be used to remove records by right clicking on the record in the subform and clicking delete. The form looks like this:
Currently, I have no way of making changes to records. I need to be able to make changes such as updating rank, shop name, phone number, etc. Most of those fields come from other tables and not from tblCustomer (to break apart the data and eliminate duplicate data).
I've tried using a combo box in the subform, but that won't work because it updates all of the combo boxes for that field. I've heard there are ways around this but they're complex. What would I do to get around that?
Another idea I had was to have a popup form that displayed customer's info and allowed the user to make changes. I would prefer if it could be done in the subform.