The simple answer is NO - but the workaround depends on how you are building up your SQL statement
If you use
Dim strSQL As String
strSQL = "SELECT field1, field2, field3, " _
& "field4, field6 " _
& "FROM tblOne, tbl2 " _
& "ON tblOne.field1 = tblTwo.field4 " _
& "WHERE field6 = 47 " _
& "AND field3 '" & control3 & "';"
Then you have to put all the comments at the start or the end.
However if you use
Dim strSQL As String
strSQL = "SELECT field1, field2, field3, "
' Then you can add
strSQL = strSQL & "field4, field6 "
' as many comments
strSQL = strSQL & "FROM tblOne, tbl2 "
' between these lines
strSQL = strSQL & "ON tblOne.field1 = tblTwo.field4 "
' as you see fit
strSQL = strSQL & "WHERE field6 = 47 "
' etc
strSQL = strSQL & "AND field3 '" & control3 & "';"
Personally I think the first option ends up easier to read with the full explanation at the start. But it's a choice thing in the end.
'ope-that-'elps.
G LS