Folks,
Need help getting my code to work. I am trying to select "All" in a combobox for a query in access.
See my sql code I added to the Row Source:
Bound Column = 1
Column Count = 2
Column Widths = 0; 2
Looks like the query builder is working correctly but not translating to the actual query I am trying to configure. My normal values work just not the all function.
Any assistance would be highly appreciated.
Thanks,
Chris
Need help getting my code to work. I am trying to select "All" in a combobox for a query in access.
See my sql code I added to the Row Source:
Code:
Select Managers AS Filter, Managers FROM dbo_ManagerList UNION SELECT '*' AS Filter, " All" AS Managers FROM dbo_ManagerList GROUP BY dbo_ManagerList.Managers ORDER BY dbo_ManagerList.Managers;
Column Count = 2
Column Widths = 0; 2
Looks like the query builder is working correctly but not translating to the actual query I am trying to configure. My normal values work just not the all function.
Any assistance would be highly appreciated.
Thanks,
Chris
Comment