Can anyone see what's wrong with this code? It's a simple INSERT INTO statement yet I continue to get a "Syntax error in INSERT INTO statement". The Renewal table is the "many" of a one to many relationship but a similar record exists in the "one" table. If I open up the Renewal table I can manually add the owner with out error. Thanks.
Dim strOwner as String
strOwner = txtOwner
strSQLRenewal = "INSERT INTO Renewal(Comp) Values ('" & strOwner & "')"
Dim strOwner as String
strOwner = txtOwner
strSQLRenewal = "INSERT INTO Renewal(Comp) Values ('" & strOwner & "')"