D
Douglas J. Steele
You don't. Tables are "sacks of data": you can't make any assumptions about
the order of entries in them (and the order will likely change when you
compact the database).
Instead, create a query with an appropriate ORDER BY clause in it, and use
that wherever you would otherwise have used the table.
the order of entries in them (and the order will likely change when you
compact the database).
Instead, create a query with an appropriate ORDER BY clause in it, and use
that wherever you would otherwise have used the table.