Record Sequence

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to figure out if there is a way to keep records in alphabetical
order during record entry in a database form? If a person adds a new record
or several new records, I would like those records to be saved in
alphabetical order. Is that possible?
 
Why? What difference does it make in what order they're saved?

All you really should care about is that you can retrieve them in alphabetic
order when you need to refer to them. To do that, create a query with an
appropriate ORDER BY clause, and use the query wherever you would otherwise
have used the table.
 
Back
Top