I Am trying to insert data into a table --- some of the fields are coming from a different form (frmHold)
DoCmd.RunSQL "INSERT INTO tblReportResults1 (AppID, DocumentID, ReportType, RptDate, ProjOff, ProjContactPerson,) VALUES (" & Forms!frmHold.AppIDHold, Forms!frmHold.DocumentIDHold, Me.ReportType, Me.RptDate, Me.ProjOff, Me.ProjContactPerson
I've verified that all of the fields are in the table and there is good data to be inserted.
Please Hellp
DoCmd.RunSQL "INSERT INTO tblReportResults1 (AppID, DocumentID, ReportType, RptDate, ProjOff, ProjContactPerson,) VALUES (" & Forms!frmHold.AppIDHold, Forms!frmHold.DocumentIDHold, Me.ReportType, Me.RptDate, Me.ProjOff, Me.ProjContactPerson
I've verified that all of the fields are in the table and there is good data to be inserted.
Please Hellp