I would like to include a date field in a table that inputs todays date/time
upon creation of the record or if one of the fields have been edited.
This cannot be done at the Table level, since Access doesn't have
table triggers.
What you can do is to force all data updating to be done using a Form
(a good idea in any case!). In the Form's BeforeUpdate event write
code to set the timestamp field. Say you have a field WhenEdited:
Private Sub Form_BeforeUpdate(Cancel as Integer)
<put any record validation code first>
<if the record is accepted...>
Me!WhenEdited = Now
End Sub
John W. Vinson[MVP]