I would like to be able to Select All for a Combo box I created. I followed the SQL suggested on the Microsoft site, and the "(All)" option is showing up in the Combo Box as an option, however, my query for the report is not recognizing that it needs to display all the values. Could you help me with this?
This is the SQL that I am using:
SELECT DISTINCT Department FROM TableEmployeeProfile UNION SELECT "(All)" FROM TableEmployeeProfile
I tried to add a Null or Like"*" after the Union Select, but recieved an error that my columns were incorrect.
Thanks in advance for your help!
This is the SQL that I am using:
SELECT DISTINCT Department FROM TableEmployeeProfile UNION SELECT "(All)" FROM TableEmployeeProfile
I tried to add a Null or Like"*" after the Union Select, but recieved an error that my columns were incorrect.
Thanks in advance for your help!