Hello...
The database I working with is a simple employee database and I have several ComboBoxes populated with various components of employees profile. E.g., EmpID's; First Names; Last Names; Supervisors; Shift Start Times; etc.
What I am trying to achieve is, for example, if the user selects a Shift Start Time from the Shift Start Time ComboBox I would like the ListBox to display all employee records with that Shift Start Time. If the user selects or types an employee's first name in the First Name ComboBox, I would like the ListBox to show all employees with that first name and so on.
I have this concept working with the Supervisor ComboBox using VBA and a Requery event. But I am unable to get this idea to work across multiple ComboBoxes
Thanks in advance for guidance.