I'll assume you have a field called LastUpdated or something in your table.
In the form's BeforeUpdate() event, put:
Code:
Me.LastUpdated = Now
As the BeforeUpdate() event only triggers when the form is Dirty then only when changes are made to the record will the LastUpdated field be updated to the current time.