Hi I pretty new to access...I am creating a form where it would show up the employees assigned to a particular supervisor.
The supervisor is selected using a drop down list. I want to use the selected supervisor to run a query to find the corresponding employees.
However, I can't figure how to actually run the query. I tried entering this
Code:
SELECT EmployeesList.[First Name], EmployeesList.[Last Name], EmployeesList.Supervisor FROM EmployeesList WHERE (((EmployeesList.Supervisor)=[Forms]![AssignmentsBysup]![SupervisoSelection]]));
in the On Change filed but that gives an error.
Please help