Hi All,
I've added a subform onto my main form. In this subform is a combobox that uses a query to look up tblEmployees.FullName and is tied to the main form by a junction table tblEmployeestoTicket.
When using the drop-down it shows me the ID of the employee instead of the full name which makes total sense because there is no FullName field in the junction table. I'd like it so users can see the full name of the employee to assign it to the ticket.
The relationship looks like the image below.
The business logic states that an employee can be assigned to multiple ticket numbers so I use the junction tblEmployeestoTicket to map the many-to-many relationship between employee(s) and the ticket.
I'm not sure that's the best solution. Any ideas?
Thanks for any help!