Where am going wrong here , the code keeps giving an error I never thought this can be an issue , kindly check
Code:
Private Sub CboWorksOrder_AfterUpdate()
Dim sQLstr As String
sQLstr = "INSERT INTO tblJobWorks ( WorkDate, WorKorder, CompanyName )" & _
"SELECT tblJobQuotation.QTRDate, tblJobQuotation.JobNumber, tblJobQuotation.CustomerName" & _
"FROM tblJobQuotation WHERE [tblJobQuotation.JobQID]= & Me.CboWorksOrder"
sQLstr = "INSERT INTO tblJobworksDetails ( Descriptions, QTY )" & _
"SELECT tblJobQtDetails.Description, tblJobQtDetails.QTY " & _
"FROM tblJobQtDetails WHERE tblJobQtDetails.JobQID)= &Me.CboWorksOrder"
End Sub