Beginner programmer : record's problem!

  • Thread starter Thread starter smael via AccessMonster.com
  • Start date Start date
S

smael via AccessMonster.com

I have a data input form and need to automatically duplicate the existing
record as a new record in a new table (Annonce_OUi) by clicking a button.
Many thanks in advance!
 
Given that each record on your data entry form has a unique identifier...
some key value... you would run an Append query to copy that record to
another table.

"Verbally" the Append query works like this example...
Take the values from the record in table XYZ with a CustomerID of 123-45,
and Append that record to table ABC.

hth
Al Camp
 
Back
Top