G
Guest
I have this Append query set up to append to a table from fields on a form
and subform, the query seems to run ok (no errors) but doesnt append the
records to the table. here is the sql.
INSERT INTO tblExamResults ( CourseExamID, ExamName, DivisionID,
StudentCourseID, StudentPMKeysNumber )
SELECT
[Forms]![frmAddExamToDivision]![frmAddExamToDivisionSubform]![CourseExamID]
AS CourseExamID,
[Forms]![frmAddExamToDivision]![frmAddExamToDivisionSubform]![ExamName] AS
ExamName, tblStudentCourses.DivisionID, tblStudentCourses.StudentCourseID,
tblStudentCourses.StudentPMKeysNumber
FROM tblStudentCourses
WHERE
(((tblStudentCourses.DivisionID)=[Forms]![frmAddExamToDivision]![DivisionID]));
Any help would be great thanks
Rodney
and subform, the query seems to run ok (no errors) but doesnt append the
records to the table. here is the sql.
INSERT INTO tblExamResults ( CourseExamID, ExamName, DivisionID,
StudentCourseID, StudentPMKeysNumber )
SELECT
[Forms]![frmAddExamToDivision]![frmAddExamToDivisionSubform]![CourseExamID]
AS CourseExamID,
[Forms]![frmAddExamToDivision]![frmAddExamToDivisionSubform]![ExamName] AS
ExamName, tblStudentCourses.DivisionID, tblStudentCourses.StudentCourseID,
tblStudentCourses.StudentPMKeysNumber
FROM tblStudentCourses
WHERE
(((tblStudentCourses.DivisionID)=[Forms]![frmAddExamToDivision]![DivisionID]));
Any help would be great thanks
Rodney