Duane, I am not sure what you mean by remove the "details" level. I cannot
actually remove the details section from the physical report and I have
nothing in the details area of my report except the subreport. Below is the
SELECT statement for my report:
SELECT Employees.Employee, [Completed Classes].Class, [Completed
Classes].[Date Completed], Employees.EmployeeID, Employees.Status,
Employees.Grade, Employees.GS, Employees.[Hire Date], Employees.Department,
Employees.[Position Title], Employees.Orientation, Employees.WCCS,
Employees.[Active Duty], Employees.[Training Needed] FROM Employees INNER
JOIN [Completed Classes] ON Employees.EmployeeID=[Completed
Classes].EmployeeID WHERE (((Employees.EmployeeID) Like "*" & [Employee ID] &
"*") AND ((Employees.Status)="Active"));
When opened, the report asks for the employee id.
Thank you,
Dana
--
"Success is the ability to go from one failure to another with no loss of
enthusiasm." - Winston Churchill
Duane Hookom said:
If you are adding a subreport of details, you must remove the "details" level
from the main report. The individual training records table(s) should not be
included in the main report's record source.
--
Duane Hookom
Microsoft Access MVP
:
I have created an Access report to show training for an employee filtered by
the employee id. To minimize paper use, I would like the detail section ONLY
of the report to format as columns. I tried inserting a subreport but the
entries repeated an enormous number of times... a two page report went to
27002+ pages. Not good. Please help.