How do I access a field in a previous record? (Access 2997)

G

Graham R Seach

There is no such concept as a 'previous' record, because in databases,
things aren't necessarily stored in the order you think they are.

If you want to get at a particular record, then you need to create a query.
You haven't specified where or how you want to get this record, so it's
pretty hard to give you a contextualised answer, but generally, create a
query.

SELECT x, y, z FROM tblTable WHERE somefield = somevalue

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
 

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