Record Additions / Changes

B

Bill Cormier

How do I set it up so that whenever a record is added to a table or any field
on the record changes, the effective date field in the record is
automatically updated?
 
R

Rick Brandt

Bill Cormier said:
How do I set it up so that whenever a record is added to a table or any field
on the record changes, the effective date field in the record is
automatically updated?

For insertions you can just add a date field with a default value of Now() or
Date() depending on whether you also want the time or not. For changes you
would have to make all of them in a form and use the form's BeforeUpdate event
to set the value of the field to Now() or Date(). There is no way to do that at
the table level.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top