T
toni.gee
I use the following code as the row source in a combo box:
SELECT [Months].[MonthNo], [Months].[Month] FROM Months UNION Select Null as
AllChoice, "(All)" as Bogus From Months ORDER BY [Months].[MonthNo];
The combo box works fine and produces the correct results (which are then
utilised by a query). However, after selecting (All), the dropdown list
disappears (as normal) and the combo box shows blank (null).
Is there a way to make it show (All) to reinforce that this was the
selection made?
SELECT [Months].[MonthNo], [Months].[Month] FROM Months UNION Select Null as
AllChoice, "(All)" as Bogus From Months ORDER BY [Months].[MonthNo];
The combo box works fine and produces the correct results (which are then
utilised by a query). However, after selecting (All), the dropdown list
disappears (as normal) and the combo box shows blank (null).
Is there a way to make it show (All) to reinforce that this was the
selection made?