G Guest May 23, 2006 #1 How do you add a field to create a date and time stamp of all edits to a record?
R Rick B May 23, 2006 #2 This is a very common question. Do a search and read the previous posts on the topic. Look for the keywords "timestamp" or "audit trail".
This is a very common question. Do a search and read the previous posts on the topic. Look for the keywords "timestamp" or "audit trail".
R Rick B May 23, 2006 #3 This is a very common question. Do a search and read the previous posts on the topic. Look for the keywords "timestamp" or "audit trail".
This is a very common question. Do a search and read the previous posts on the topic. Look for the keywords "timestamp" or "audit trail".
G Guest May 23, 2006 #4 Open the table in design view. Add a Date/Time field called dtmModDate, or whatever you want to call it... In the form that is used to edit the record you can add the following in the AfterUpdate event: dtmModDate = Now()
Open the table in design view. Add a Date/Time field called dtmModDate, or whatever you want to call it... In the form that is used to edit the record you can add the following in the AfterUpdate event: dtmModDate = Now()
G Guest May 23, 2006 #5 Open the table in design view. Add a Date/Time field called dtmModDate, or whatever you want to call it... In the form that is used to edit the record you can add the following in the AfterUpdate event: dtmModDate = Now()
Open the table in design view. Add a Date/Time field called dtmModDate, or whatever you want to call it... In the form that is used to edit the record you can add the following in the AfterUpdate event: dtmModDate = Now()