J jtvcs Registered User. Local time Today, 15:30 Joined Apr 10, 2003 Messages 97 Dec 3, 2003 #1 Does anyone have the code for marking a field like "Date Updated" with today's date ONLY IF DATA HAS CHANGED on that record's input via a form ? Any suggestions greatly appreciated. Access 97 version. Thanks. JT
Does anyone have the code for marking a field like "Date Updated" with today's date ONLY IF DATA HAS CHANGED on that record's input via a form ? Any suggestions greatly appreciated. Access 97 version. Thanks. JT
Tiro Cupidus Registered User. Local time Today, 14:30 Joined Apr 25, 2002 Messages 263 Dec 3, 2003 #2 I think you can use the OnChange event of the form's controls to set the date field = now().
Mile-O Back once again... Local time Today, 20:30 Joined Dec 10, 2002 Messages 11,305 Dec 3, 2003 #3 Use the form's BeforeUpdate event to run the APPEND query as this event is only triggered if changes have been made.
Use the form's BeforeUpdate event to run the APPEND query as this event is only triggered if changes have been made.
J jtvcs Registered User. Local time Today, 15:30 Joined Apr 10, 2003 Messages 97 Dec 3, 2003 #4 Thanks Mile-O-Phile, your idea worked great. JT