I searched this website and google for 3-4 hours to see how can I insert two fields of data from one table(such as table1) to another(tests), if one specific data from a column in tests table is chosen by user, then other data from table1 appear on the next column in the tests table. I used some codes, such as:
INSERT INTO Tests SELECT * FROM Table1 WHERE PRIMARY_KEY NOT IN
(SELECT PRIMARY_KEY FROM Tests)
(from here:Update data from one table to another and insert if new ms access .net)
INSERT INTO Tests(TestMethod, AcceptanceCriteria)
SELECT TestMethod, AcceptanceCriteria
FROM Table1
GROUP BY TestMethod;
(from here: How to do INSERT into a table records extracted from another table)
INSERT INTO Tests ( AcceptanceCriteria1 )
SELECT Table1.AcceptanceCriteria
FROM Table1
WHERE (((Table1.TestMethod) Like ([Tests].[TestMethod] & '*')));
(From here: http://www.tek-tips.com/viewthread.cfm?qid=1528492)
But None of them work.