I am trying to create a database where customers would enter their information and then write a description of the service they are requesting. As of now, I have one form created where the customer would enter their information and submit, then that information is stored in a table called "Customer Info". The primary key of this table will be used as the unique ID for each customer. I want to create a second form that would have a drop down menu (combo box?) where the customer would find and select their name, then write a description in a "Request" field of the computer service they are needing. When they submit this request, it would be saved into a second table called "Requests" and each request would be associated to the customer by their ID number. My first form works fine, however I cant get the second form to work. On the second form I have created, when the customer name is selected from the combo box, I would like it to associate the issue they describe with their customer ID number, pulled from the Customer Info table. I feel like I should have a One-to-Many relationship between the customer ID number on the first table and something in the Requests table, but I can't figure that out. When I put the fields into the second form, it wouldn't pull the customer ID number when the customer name was selected and also wouldn't allow me to type in the "Request" field. I'm not sure whats going wrong and hopefully this isn't too confusing, but any help would be appreciated. If anything needs clarifying, please let me know.
Thanks.
P.S. Eventually when I get these two forms to work, I need to have a third form where I would be able to select any customer and then see all their information from the Customer Info table and also have all the service requests associated to their ID number be shown.