J
|
Jane 7/23/2008 |
Hi, |
W
|
wisdom2009 author 7/23/2008 |
Hi Jane, |
|
jfr 7/23/2008 |
I can't find the the table where the original data needs to come from. ********** Insert a record into another table ************ FROM " & strTableName & " where " & where dbConnection.Execute strSQLInsert |
J
|
Jane 7/24/2008 |
Use Save new data in another table action as a sample, not Insert a record into another table. '** Save new data in another table **** strSQLSave = "INSERT INTO AnotherTable (Field1, Field2) values (" strSQLSave = strSQLSave & dict("Field1") & "," strSQLSave = strSQLSave & dict("Field2") strSQLSave = strSQLSave & ")" dbConnection.Execute strSQLSave |