I am using the following INSERT INTO statement, to insert a users RecordID and a CourseID (CSID)into the training table,
strInsert = "INSERT INTO training (RecordID, CSID)" & "Values ([RecordID], '" & cboSchedule & "')"
DoCmd.RunSQL strInsert
The problem being, if there is not already an entry...