I have a report based on a query. The query joins the Students table to the Schedules table based on Student-Id. The Schedules table also contains the student's classes. I have another query that joins the Schedules table to the Courses table by Class-Id. I use this query in a DLookUp for the field in the report to print the class description. The DLookUp is coded like this:
=DLookUp("[ClassDesc]","ClassDesc1"). This works fine, I get the description on the report. But the problem is, the description never changes for each student.
All the students have the same description(s) print on the report; it's printing the 1st students class description for every student. The descriptions should be changing as each student changes to reflect each students classes. How do I get it to change for each student?
Thanks,
Rod
=DLookUp("[ClassDesc]","ClassDesc1"). This works fine, I get the description on the report. But the problem is, the description never changes for each student.
All the students have the same description(s) print on the report; it's printing the 1st students class description for every student. The descriptions should be changing as each student changes to reflect each students classes. How do I get it to change for each student?
Thanks,
Rod