Hello,
I created an report in access which uses the following query as the Record Source:
In the Sorting and Grouping box, I put last_name and first_name (for some reason I have to put something in that box or I get an error).
Now, for some reason, the report groups on the dept field for an unknown reason. Please help! I don't want grouping to occur anywhere on this report.
If you need more information, please let me know.
I created an report in access which uses the following query as the Record Source:
Code:
SELECT candidate.*, sys_gcdepts.name_e AS dept, enrolment.target
FROM sys_gcdepts INNER JOIN (candidate INNER JOIN enrolment ON candidate.file_no=enrolment.file_no) ON sys_gcdepts.dept_id=candidate.home_department
ORDER BY candidate.last_name, candidate.first_name;
In the Sorting and Grouping box, I put last_name and first_name (for some reason I have to put something in that box or I get an error).
Now, for some reason, the report groups on the dept field for an unknown reason. Please help! I don't want grouping to occur anywhere on this report.
If you need more information, please let me know.