If you have multiple indexes, how do you select which index you want to be the current index or no index at all and have the database reflect that order?
The records are presented naturally in primary key order.
If there is no primary key, the first unique index is used.
If you want any other sequence you can sort the datasheet using the toolbar buttons or use advanced filter/sort from themenu or create a query.
have the database reflect that order
A relational database has NO order.
To retrieve records in a predefined sequence you have to write a query with an explicit ORDER BY clause.
This query may be optimized if the sort fields are properly indexed.
Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.