copy record

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm using the wizard to create a command button to copy record. It works
fine. How can I exclude the coping of a few fields when I copy the record?
Such as field a, b and c.

Thanks.
 
The way the wizard does it will not allow you to do this.
The easiest way to get what you want will be to create an Append query that
includes only the fields you want to copy and run the query in the command
button's click event. The best command to use when running an Action query
(Update, Append, Delete) is:
CurrentDb.Execute("MyActionQueryName"), dbFailOnError
 
Back
Top