theKruser
Registered User.
- Local time
- Today, 08:22
- Joined
- Aug 6, 2008
- Messages
- 122
I have a report with a sub-report that lists incidents. Basically, when an employee has an incident, it is recorded in one table. The report is built off the main personnel table and the incident table through a select query.
The problem is this, the report runs fine and displays everything, but it generates a page for every incident. Hard to explain, but this is what it does:
Suppose Employee A has three incidents. The report displays:
Employee name, employee number
Incident 1 date, time, and description
Incident 2 date, time, and description
Incident 3 date, time, and description
The problem is, it generates the same page the same number of times as there are entries. So, the above is generated exactly identical on 3 different pages, so when I print I get two duplicates.
The tables are related via employee number. Name and number is in the header of the report. Incident data is in the body. Tables are configured as shown below:
tblEMPLOYEE
employee number (primary key)
employee name
tblINCIDENT
employee number
incident number (primary key)
incident number
date
time
details
Thanks in advance for any help. It is much appreciated!
The problem is this, the report runs fine and displays everything, but it generates a page for every incident. Hard to explain, but this is what it does:
Suppose Employee A has three incidents. The report displays:
Employee name, employee number
Incident 1 date, time, and description
Incident 2 date, time, and description
Incident 3 date, time, and description
The problem is, it generates the same page the same number of times as there are entries. So, the above is generated exactly identical on 3 different pages, so when I print I get two duplicates.
The tables are related via employee number. Name and number is in the header of the report. Incident data is in the body. Tables are configured as shown below:
tblEMPLOYEE
employee number (primary key)
employee name
tblINCIDENT
employee number
incident number (primary key)
incident number
date
time
details
Thanks in advance for any help. It is much appreciated!