FORM - after update event

  • Thread starter Thread starter DiDi
  • Start date Start date
D

DiDi

I used a form to insert new records as well as to revise/update old
records. I just wondered how the "after update event" could tell that
the event was a "New Insertion" or just "Update" action? Because I
would like to count the numbers of insertion and update to a Table
through Form on every day. Thanks for help.
 
DiDi said:
I used a form to insert new records as well as to revise/update old
records. I just wondered how the "after update event" could tell that
the event was a "New Insertion" or just "Update" action? Because I
would like to count the numbers of insertion and update to a Table
through Form on every day. Thanks for help.


Use the AfterInsert event to count new records. Then
subtract that from your AfterUpdate number to get the numbe
of updated records.
 
Back
Top