Hi gang, I would like to piggy back on this one. I am having a problem with the INSERT function of SQL. I have an ACCESS database that uses auto number for the record key. When I first used the INSERT, my error was that the record key was not updatable. Then I took the record key out and now the error message is "Run-time error '-2147217900(80040e14)': Syntax error (missing operator) in query expression". All I did was take out the record key. Here is my SQL statement below.
' Construct SQL statement
SQL_Statement = "INSERT INTO [tblProblemID] " _
& "([Issue Date],[Program Area],[Functional Area],[Problem Description],[Impact],[Goal],[Measurement])" _
& "VALUES (" _
& Issue_Date & "','" _
& Program_Area & "','" _
& Functional_Area & "','" _
& Problem_Description & "','" _
& Impact & "','" _
& Goals & "','" _
& Measurement & "'," _
& 0 & "

"
Maybe in answering my question you all can help both of us out.
Thank you all very much for your support.