I have a database which tracks sports tickets that my company gives to clients
There are five tables, invoice (main), and then salesperson, tickets, customer and authorizing person, each with a main ref key pointing back to the corresponding foreign key in the invoice table through relationships.
I've created a form to enter new invoices for each new set of tickets given out, which pulls names from the other tables using a combo box so that duplicates for salespersons, customers, etc aren't created. However, everytime I create a new invoice, it duplicates the customer, salesperson, etc.. selected from the different tables using the combo box. How do I make sure that a combo box is only being used for lookup, and not update the table?
There are five tables, invoice (main), and then salesperson, tickets, customer and authorizing person, each with a main ref key pointing back to the corresponding foreign key in the invoice table through relationships.
I've created a form to enter new invoices for each new set of tickets given out, which pulls names from the other tables using a combo box so that duplicates for salespersons, customers, etc aren't created. However, everytime I create a new invoice, it duplicates the customer, salesperson, etc.. selected from the different tables using the combo box. How do I make sure that a combo box is only being used for lookup, and not update the table?