RECORDS IN FORM ARE DIFFERENT SEQUENTIALLY IN TABLE

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

Guest

RECORDS IN TABLE ARE SEQUENTIAL, BUT THE SAME RECORDS IN THE FORM ARE NOT.
I.E. 1 2 4 5 8 3 6 ECT
 
BOBBY said:
RECORDS IN TABLE ARE SEQUENTIAL, BUT THE SAME RECORDS IN THE FORM ARE
NOT. I.E. 1 2 4 5 8 3 6 ECT

Tables have no particular order and when you bind a form or report directly
to a table you are never guaranteed that the records will be retrieved in
any particular order. When the order matters use a query with an explicit
sort applied (forms) or apply the desired sort in the Sorting and Grouping
dialog (reports).

You can also set the sort order on the form, but that is easily changed or
disturbed by user actions.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top