A family of Microsoft relational database management systems designed for ease of use.
Okay, I've tried to create sub forms and quires according to your guidelines. The first sub-form's recordsource is only tblStudents.
The Second sub-form is where the tblStudentProgress. Both these 2 forms are filtered by CenterCode by the automatic link between them.
After this I created a query based on tblStudentProgress and tblCourse. Both these 2 sub-forms are filtered on the CenterCode selected from the combo box on the main form.
Here's the SQL of the query:
SELECT tblStudentProgress.CenterCode, tblStudentProgress.StudentID, tblStudentProgress.CourseID, tblStudentProgress.Grade, tblStudentProgress.GradeMonth, tblCourse.CourseName, tblCourse.CourseScore
FROM tblCourse INNER JOIN tblStudentProgress ON tblCourse.CourseID = tblStudentProgress.CourseID;
Now when I select a centercode from the combo box, the first sub-form filters the students from the center. I can now enter 4 records for each StudentID by just pressing the tab key and moving on to the next StudentID. Also I can select the grade month and CourseID. You also mentioned an append query.
Please explain the process of creating an append query once again.
Thank you.