here is my code - whats wrong?
error i get is #3075 - "syntax error - missing operator in query expression"
i have
in tbl_temp field WhoFrom is text
Code:
DoCmd.SetWarnings False
sSQL = "INSERT INTO tbl_temp " & _
" ([WhoFrom]) VALUES ('" & x & "');"
DoCmd.RunSQL (sSQL)
DoCmd.SetWarnings True
i have
Code:
DIM sSQL as String DIM x as String
Comment