I have a form which is linked to table_1. When the form is processed via a command button, I want to take value_1 and value_2 of table_1 and insert them to value_1 and value_2 of table_2.
The tables are not linked, and have no relation at all.
I am having problems with the SQL syntax - any help would be appreciated.
Code:DoCmd.RunSQL (INSERT INTO table_2 (value_1,value_2) VALUES value_1,value_2)