I'm new to Access, but what I'm trying to do is copy a record from one table to another table and then delete the original record. I want to be able to do this using a button or something within a form. Is this possible?
Take a look at Append query (INSERT INTO ... SELECT ...) and at Delete query (DELETE FROM ... WHERE ...).
You may consider the DoCmd.RunSQL method for such action queries.
Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.