PROBLEM
I want to insert the current recordset row into a MS Access table. I am currently getting this error
Syntax error (missing o
If the type fields in your table tblSummary_Appl_Usage_score
are numbers, use this:
DoCmd.RunSQL "INSERT INTO tblSummary_Appl_Usage_score VALUES (" & rs![Configuration] & "," & rs![User Input / Output] & ")"
If the type is string, use this:
DoCmd.RunSQL "INSERT INTO tblSummary_Appl_Usage_score VALUES (""" & rs![Configuration] & """,""" & rs![User Input / Output] & """)"