Open form at last entry

B

Bil Neilsen

If I have a form linked directly to a table, how can I set the form up so
that when it opens the last entry is showing and not the first?
 
O

Ofer

Assumig that you have a field that point to the last record, like counter, or
date insert.
Make the recordsource of the form with order in that field
Select * From MyTable Order By MyField
 
Top