Z
zofficedepot
In Access 2003 (please try others too):
Create Table1 with alpha fields fname, lname (no primary key)
Enter 2 records: Clueless Gates and Smart Anybody
Create a query in SQL or design:
SELECT Table1.fname, Table1.lname
FROM Table1
ORDER BY Table1.fname;
CLOSE AND SAVE as Query1, and THEN run it. You get Gates, then Anybody
(because it's sorting by first names Clueless and Smart).
With Gates highlighted, click the A-to-Z sort button. Now Anybody is
atop.
Close the query. Answer Yes to the save changes question.
Now comes the queerness: subsequent invocations are sorted by lname.
But the SQL says it uses fname. So does the QBE.
WTF??
Create Table1 with alpha fields fname, lname (no primary key)
Enter 2 records: Clueless Gates and Smart Anybody
Create a query in SQL or design:
SELECT Table1.fname, Table1.lname
FROM Table1
ORDER BY Table1.fname;
CLOSE AND SAVE as Query1, and THEN run it. You get Gates, then Anybody
(because it's sorting by first names Clueless and Smart).
With Gates highlighted, click the A-to-Z sort button. Now Anybody is
atop.
Close the query. Answer Yes to the save changes question.
Now comes the queerness: subsequent invocations are sorted by lname.
But the SQL says it uses fname. So does the QBE.
WTF??