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.
 

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

Back
Top