Hello,
I have a combo box with the following Row Source:
Code:
SELECT DISTINCTROW tblReturnMerchandise.ReturnDate
FROM tblReturnMerchandise
UNION
SELECT "" FROM tblReturnMerchandise;
This shows the dates from tblReturnMerchandise (Unique Values only) with a blank field so the person can select none of the dates.
Ideally i would like the blank to be at the top, with the dates descending, but i would settle for the dates ascending. I can't get an ORDER BY statement to work on this query.
Thank you!