You'll need a date/time field in the table, let's call it Timestamp,
and a bit of VBA code in the form's BeforeUpdate event:
Private Sub Form_BeforeUpdate(Cancel as Integer)
<put any form validation code here>
Me!Timestamp = Now ' or Date if you want just date, not date/time
End Sub