Hello, I have a combobox on my search form that uses a query as its RowSource to display a text employee name. I want to be able to select "All" to display all records.... below is my RowSource.
Here is what I tried with no luck....
Thanks,
SoggyCashew.....
Code:
SELECT [qry_ActiveInactiveEmployees].[EmployeeName] FROM [qry_ActiveInactiveEmployees] ORDER BY [EmployeeName];
Here is what I tried with no luck....
Code:
SELECT EmployeeName FROM qry_ActiveInactiveEmployees
UNION SELECT "<All>" FROM qry_ActiveInactiveEmployees SELECT [qry_ActiveInactiveEmployees].[EmployeeName] FROM [qry_ActiveInactiveEmployees] ORDER BY [EmployeeName];
Thanks,
SoggyCashew.....