Student Progress Database Application

Anonymous
2016-11-08T11:25:10+00:00

Hello everyone!

I want to make an application for keeping track of students’ progress marks each month of the year using Access 2010. Suppose I have 10 literacy centers in 10 different locations each with 35-40 students enrolled. I want to generate a monthly Access  report showing the progress of each student in each of the subjects taught.

I have designed forms for entering details of each center, instructor and student saved in separate tables. All I need to do is find a way to generate month-wise students’ progress reports for each of the 10 literacy centers to be handed over to the center manager.

What would be the best way this could be done using Access 2010?

Thank you.

~~Maneesh

Microsoft 365 and Office | Access | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

139 answers

Sort by: Newest
  1. Anonymous
    2016-11-18T13:30:07+00:00

    It is working for the SELECT DISTINCT query and not for the SELECT query. 4 records are showing for each student for each course on the CenterCode.

    Was this answer helpful?

    0 comments No comments
  2. ScottGem 68,840 Reputation points Volunteer Moderator
    2016-11-18T11:21:30+00:00

    We need to go back a bit. We went down the wrong road with the Append query. If you review my instructions, I said to add the Students and Courses table to a query without a join. Then to include the StudentID, CenterCode and CourseID in the query, Then to set the criteria to the CenterCode control from the main form.

    Somewhere along the line you changed the query and I missed it. So we need to go back to that query and test it as a SELECT query.

    SELECT CenterCode, StudentID, CourseID

    FROM tblStudents, tblCourse

    WHERE CenterCode=Forms![Production_CenterDetails_Main_Form]![CenterCode];

    Test that query to make sure it has 4 records per student 1 for each course. If it doesn't then try it this way:

    SELECT DISTINCT CenterCode, StudentID, CourseID

    FROM tblStudents, tblCourse

    WHERE CenterCode=Forms![Production_CenterDetails_Main_Form]![CenterCode];

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2016-11-18T10:59:35+00:00

    There are some discrepancies in the data that is being stored in the tblStudentProgress table. Though I have corrected the append query and changed it show the tblStudents and tblCourse. Here's the SQL of the query:

    INSERT INTO tblStudentProgress ( CenterCode, StudentID, CourseID, GradeMonth )

    SELECT tblStudents.CenterCode, tblStudents.StudentID, tblCourse.CourseID, [Forms]![Production_CenterDetails_Main_Form]![Text37] AS Mth

    FROM tblStudents, tblCourse;

    However the way in which the data is being stored in tblStudentProgress is wrong. Take a look at this screenshot for the month of March:

    There are gaps in the rows. And the month is not in the same row as the marks.  And this is what I filtered the month on:

    While you can see the StudentID is 222 for the courses above, the screenshot below stores the month in some other StudentID:

    These need to be corrected.

    ***Personal information deleted by the moderator. Please see the Microsoft Community Frequently Asked Questions for more information on how you can protect your privacy.***

    Was this answer helpful?

    0 comments No comments
  4. ScottGem 68,840 Reputation points Volunteer Moderator
    2016-11-18T01:47:54+00:00

    I'm sorry, I missed something. That query is wrong.

    You should be pulling from the STUDENT table and the Course table, NOT StudentProgress. You are Appending TO StudentProgress.. Also where did that WHERE clause come from?

    You need to redo the Append query.

    Was this answer helpful?

    0 comments No comments
  5. Anonymous
    2016-11-18T01:26:23+00:00

    Here's the SQL of the Append Query with month entered as "June":

    INSERT INTO tblStudentProgress ( CenterCode, StudentID, CourseID, GradeMonth )

    SELECT tblStudentProgress.CenterCode, tblStudentProgress.StudentID, tblStudentProgress.CourseID, tblStudentProgress.[Forms]![Production_CenterDetails_Main_Form]![Text37] AS Mth

    FROM tblStudentProgress, tblCourse

    WHERE (((tblStudentProgress.[Forms]![Production_CenterDetails_Main_Form]![Text37])="June"));

    Was this answer helpful?

    0 comments No comments