I'm trying to figure out how I can create a form with combo boxes that uses the main table while the combo boxes use a query. What I'm trying to do is get the combo boxes to update after they are changed. They're 65 combo boxes each with it's own default (1 - 65). The main table has a column named "Recall_Position" and the query pulls from this and the "Lastname" and "Firstname". When the form is opened each combobox is auto filled with the last name of the from the row where the "Recall_Position" is equaled to the comboboxes default.
Example1: the row that contains the number one in "Recall_position" has the name Smith in the same row under "Lastname", when the form is opened the combobox that has "1" set as it's default will open with Smith already selected in the combobox. This is already set and working with no issues.
What I'm trying to get is when a different "Lastname" is selected in the combobox it will clear the number from the "Lastname" and set the new "Lastname" with that comboboxes default number.
Example2: Using Example1 when the combobox is changed from Smith to Woods, it will find Smith in "Lastname" and go to the same row under "Recall_position" and clear Smith's number then find Woods and put the "Recall_position" as "1".
If I have to go through and add a VBA fro each and every combobox on change, it wouldn't bother me. The reason behind this is I am creating a report that will pull information based on the "Recall_position" to create roster of names and phone numbers.