to move the current record
currentdb.execute "insert into tblArchived select * from tblActive where [Primary Key]=" & me.[Primary Key]
to delete the current record
currentdb.execute "delete * from tblActive where [Primary Key]=" & me.[Primary Key]
* again you have to change the name of the table to the actual names of your tables.