Revision History in Access

I

Instructor Cloud

Is there a feature that tracks revisions in Access? If so, how do I access it?
 
J

Jerry Whittle

Not built in. You'll need to roll your own.

A date field with the default of Now() will tell you when a new record was
entered. If using a form, you could update another date field with Now() to
say when the record was last changed. There is no simple way to track when a
record was deleted.

There are also ways of tracking which user entered/edited records.
 
Top