helloworld
Registered User.
- Local time
- Today, 15:18
- Joined
- May 18, 2004
- Messages
- 62
Hey guys,
Can anyone tell me what is wrong with this statement? I keep getting a syntax error when the Record Create Identifiers are equal to 'johnsmith' and i get another syntax error when the record create identifiers are equal to something to something like 'John.D'Souza'.
Your help would be much appreciated!
Can anyone tell me what is wrong with this statement? I keep getting a syntax error when the Record Create Identifiers are equal to 'johnsmith' and i get another syntax error when the record create identifiers are equal to something to something like 'John.D'Souza'.
Your help would be much appreciated!
Code:
DoCmd.RunSQL "INSERT INTO [Submission Component] ( [Submission Component].[Standard_Submission Identifier], [Submission Component].[Standard_Component Identifier], [Submission Component].[Record Create Date], [Submission Component].[Record Create Stakeholder Identifier], [Submission Component].[Record Effective Date], [Submission Component].[Record Effective Stakeholder Identifier], [Submission Component].[Record End Date], [Submission Component].[Record End Stakeholder Identifier] ) VALUES (" & [Forms]![tester]![Submission_ID] & "," & [Forms]![tester]![Standard_Component Identifier] & "," & [Forms]![tester]![Record Create Date] & "," & [Forms]![tester]![Record Create Stakeholder Identifier] & "," & [Forms]![tester]![Record Effective Date] & "," & [Forms]![tester]![Record Effective Stakeholder Identifier] & "," & [Forms]![tester]![Record End Date] & "," & [Forms]![tester]![Record End Stakeholder Identifier] & ");"