I am building a form that combines data from several tables. One table, Jobs, contains information about projects (like job #, budget, and so forth). That table is linked to another table, Contacts, that contains information about individual clients, via the ContactID #. I want to be able to type in the Contact's name on the form, and have the ContactID # stored in tblJobs.
The problem I am having is that the Contacts table has first and last names as separate fields. So when I create a combo box on the form with two columns for first and last name, I can't type in the last name to locate the correct Contact record. There are too many contacts to scroll through to find the right one. I can't use only the first name or the last name, because there are duplicates of each. What should I do? Would I be better off changing the structure of Contacts to have one field for both first and last name?
The problem I am having is that the Contacts table has first and last names as separate fields. So when I create a combo box on the form with two columns for first and last name, I can't type in the last name to locate the correct Contact record. There are too many contacts to scroll through to find the right one. I can't use only the first name or the last name, because there are duplicates of each. What should I do? Would I be better off changing the structure of Contacts to have one field for both first and last name?