A
adriany
trying to list dates in order previous to now
listbox-
SELECT DISTINCT [Query1].[Date1] FROM [Query1] ORDER BY
[Query1].[Date1];
works great
SELECT DISTINCT [Query1].[Date1], [Query1].[Date1] FROM
[Query1] Union Select "*", "All" from [Query1] ORDER BY
[Query1].[Date1];
doesn't order by date but text, anyone knows how to fix
this problems
listbox-
SELECT DISTINCT [Query1].[Date1] FROM [Query1] ORDER BY
[Query1].[Date1];
works great
SELECT DISTINCT [Query1].[Date1], [Query1].[Date1] FROM
[Query1] Union Select "*", "All" from [Query1] ORDER BY
[Query1].[Date1];
doesn't order by date but text, anyone knows how to fix
this problems