I have a form that has a list box. I have query that populates the items in the list box. I have made a combo box on another form where the user picks the frequency that they want to view. They then click the Open form button and it will pull up the form with the list box filtered with their choice.
I made a Union Query to add all to the list in the combo box. The combo box list gets populated by another query.
This is the SQL in the union query.
When I select the <All> no records come up. It also doesn't pull up records with the blank choice, or the "-" choice. I will pull up the other choices.
In my combo box I have set the column count prop to 2, the bound column to 1.
Any idea what I'm doing wrong? I even tried making a text box that will fill with the combo box choice and referencing that in the query that pulls up the list box form but that didn't work either.
Thanks,
Mark
I made a Union Query to add all to the list in the combo box. The combo box list gets populated by another query.
This is the SQL in the union query.
Code:
SELECT[List:FrequencyQuery].Frequency, [List:FrequencyQuery].Frequency FROM [List:FrequencyQuery]; UNION SELECT "*", "<All>" as FROM [List:FrequencyQuery];
When I select the <All> no records come up. It also doesn't pull up records with the blank choice, or the "-" choice. I will pull up the other choices.
In my combo box I have set the column count prop to 2, the bound column to 1.
Any idea what I'm doing wrong? I even tried making a text box that will fill with the combo box choice and referencing that in the query that pulls up the list box form but that didn't work either.
Thanks,
Mark