Update field after updating record.

  • Thread starter Thread starter Wouter
  • Start date Start date
W

Wouter

After a field/ record has been updated a data field has
to be changed automatically.

What do I have to do to make this happen?

Thanks.
 
In the AfterUpdate event procedure of the form where the user updates the
data, open a recordset into the table that contains this data, and you can
update the value.

If you are not aware of the rule that you do not store dependent values, it
might be a good idea to read up on normalization and understand why the rule
exists.
 
Back
Top