PROBLEM
I want to insert the current row of a recordset into an MS Access table. I am currently getting this error
Syntax error (missing operator) in query expression 'rs[columnname]'
CODE
Here is my current code, I am trying to grab all the columns and paste them into a new table.
DoCmd.RunSQL "INSERT INTO tblSummary_Appl_Usage_score VALUES (rs[Configuration], rs[User Input / Output])"
I'm not quite sure what is missing.
vba insert ms-access ms-access-2010
zach
source share