Is there a VBA method for copying a single record in form view?

D

Douglas J. Steele

Access doesn't really have a concept of "last record of a table". Tables are
unsorted sacks of data: Access will stick records wherever it wants.

The only way to ensure order is to use a query with an appropriate ORDER BY
clause.

Assuming you've got an appropriate ORDER BY clause, you can use the TOP 1
predicate.
 

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

Top