Simulating Trigger

  • Thread starter Thread starter Richard Albrecht
  • Start date Start date
R

Richard Albrecht

Hi,

Has anyone developped a procedure that simulates a trigger. For instance
when a field gets updated I want to automatically update another field,
based on the value in the changed field.

TIA

Rich
 
Access uses Events, which are available in Forms and Reports, instead of
Triggers. So, if you update a control on your Form, you can use the
Control's After Update event to write some code to update another Control.
 
Back
Top