Duplicate pages

  • Thread starter Thread starter Guest
  • Start date Start date
Is the data source that the report is based on pulling duplicate records?
If so, fix the query that is pulling the records.

If not, give us some more details.
 
The report is running off a query, the query is supplying the right info..
It is boat permit software. If a person has one boat, they get one renewal
letter. If they have two boats they get one renewal letter, but with both
boats listed. The problem occurs when a person has two boats, it is printing
off duplicate copies of the same report.
 
Sounds like you need to make sure that your report is based on the Person
table, not the boat table.

A sub report could be used to include each boat the person owns.
 
It is a sub report that list the info. on the report page. Everything looks
good, it just prints out 2 copies.
 
If a person has two boats, two report pages are printing out, in the report a
subreport is included listing their boats. It should only print one report.
It is printing duplicate copies of the report if they have more than one boat.

thanks for your help......
 
The easiest way to do this would be to have the report based on the boats.
One record per boat.

Then GROUP AND SORT by person, then Boat.

In the person's header and footer you'd include the text of the letter. In
the detail section, you'd include the boat data.

You'd also have a forced page return in the person footer.


- Person Header -

Dear [Name]:...
This is to inform you that...the following boats are...


- Detail Section -
[BoatYear] [BoatMake] [ExpDate] etc,


- Person Footer -
Very truly yours,....
<page break>
 
I have looked in my table and I have multiple entries for people with
multiple boats. In my query, in the permit number I want to create a
criteria saying no duplicate permit numbers should show up, can you tell me
what the syntax is?
 
I would fix my data and get rid of the duplicates. I'd then set indexes to
prevent duplicate entries in the future.
 
In my query I have: Field: Perm_ID
Table: Permittee
Sort:
Show:
Criteria:

What syntax do I need to include to exclude duplicate Perm_ID numbers. I do
not want to delete them, just ignore the duplicates.
 
Back
Top