A family of Microsoft relational database management systems designed for ease of use.
Add a date/time field to your table; let's say you name it LastModified.
Open the form used to enter/edit records in the table in design view. (If you don't have such a form yet, create it.
Add a text box bound to the LastModified field to the form. If you wish, you can hide it by setting its Visible property to No.
Create a Before Update event procedure for the form:
Private Sub Form_BeforeUpdate(Cancel As Integer)
Me.LastModified = Now
End Sub
Now will store the date and time in the LastModified field; if you only want the date, use Date instead of Now.