Please help me out with this one. FM forms are giving me fits.
OK, I have a relatively simple database to keep track of grades. Each student takes 3-4 tests per week. My wife needs to enter their grades for each test and then output results per student. The final report should be one report per student showing their performance on each test. The number of tests and type of tests vary week to week.
I have the following tables and fields:
Students Table with:
StudentID
StudentName
Report Table with:
ReportID
ReportName
StudentID
Grades table with:
GradeID
ReportID
TestID
NumberRight
PercentageRight
Test table with:
TestID
TestName
NumberQuestions
The relationships are:
Student (one to many) Report
Report (one to many) Grades
Grades (many to one) Test
The structure is very much like a typical customer-invoices-lineitems-products schema.
I CAN enter grades just fine by creating a portal in the Report table. The portal directly places fields from the Grades and Test tables. While it seems to work just fine, I can't create a layout that will produce just one week's set of reports. I see now that I should add a report date to the report table but that doesn't solve all of my problems. When I try and generate a columnar report with a page per student I don't see every grade and every test, I just seem to see the topmost test results.
Any help would be greatly appreciated.
Geekhunter