Automatically Update a Date Field

SMatthews

Registered User.
Local time
Today, 13:49
Joined
Nov 13, 2001
Messages
38
Is there any way to automatically update a field with todays date if another field has been changed? If yes, will it only work in a form, or will it work if you are updating info in a query and/or a table? Thanks in advance.
 
Access does not support triggers as do most other RDBMS'. Therefore the only way to do this is with code placed in the BeforeUpdate event of a form. This code would of course not be executed if you updated the table directly or through an action query.
 

Users who are viewing this thread

Back
Top Bottom