Access has no triggers, so cannot do this at the engine level.
However, if all changes are made through a form, you can use the
BeforeUpdate event of the form to write the date and time into your field:
Private Sub Form_BeforeUpdate(Cancel As Integer)
Me![NameOfYourDateTimeFieldHere] = Now()
End Sub
--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Reply to group, rather than allenbrowne at mvps dot org.
I want a date field that automatically changes whenever any field in a
record
changes.
How do I do this?