Identifying Updated Records

sharkey

New member
Local time
Today, 19:25
Joined
Oct 23, 2006
Messages
1
Hi

I have my table set up to add today's date as a "date last updated" field. this works for all new records but I need to flag instances where a user has amended any existing records, so that on a daily basis I can filter out anything new based on the "date last updated".

Any ideas how I can flag changes to existing records?

Apologies if this is a straight forward question I'm fairly new to Access
 
Add the following to the Forms Before Update Event

Me.DatelastUpdated = Date

HTH
 
It might be useful to concatinate the vba.environ(name) function to that date.
 

Users who are viewing this thread

Back
Top Bottom