G Guest Sep 15, 2004 #1 How do I update a date in a text field automatically whenever a record is changed?
A Allen Browne Sep 15, 2004 #2 Use the BeforeUpdate event procedure of the form, e.g.: Private Sub Form_BeforeUpdate(Cancel As Integer) Me.[MyDateField] = Now() End Sub
Use the BeforeUpdate event procedure of the form, e.g.: Private Sub Form_BeforeUpdate(Cancel As Integer) Me.[MyDateField] = Now() End Sub