D
Douglas J. Steele
Space Underscore.
However, if you're trying to continue a string, you need to end the string
and concatenate it to the beginning of the continued string:
docmd.runSQL "Insert into tblTableName (Field1" & _
"Field2) SELECT A, B FROM " & _
"MyTable WHERE Select = True"
--
Doug Steele, Microsoft Access MVP
(No private e-mails, please)
beginning of line 2.
However, if you're trying to continue a string, you need to end the string
and concatenate it to the beginning of the continued string:
docmd.runSQL "Insert into tblTableName (Field1" & _
"Field2) SELECT A, B FROM " & _
"MyTable WHERE Select = True"
--
Doug Steele, Microsoft Access MVP
(No private e-mails, please)
of code but I can't remember what the syntax is at the end of line 1 and theMcLean J said:I have a line of code for...
docmd.runSQL "Insert into tblTableName (...............
This append query is too long for one line... will actually take 3 lines
beginning of line 2.