Generating Report to print to own page

K

Kat

In the datebase that I created I use it to track citations by trades. Each
citation is entered into the datebase and stored by a record number. When I
run the reports for the citation each time they could fall under 3 diffrent
style of reports. 1st citation, 2-3 WRA, and 4+ Penalty. This is all driven
by the number of citations received by standard. What I would like to do is
have each contractor entered that day have its own report. I am not sure how
I can do this. Currently when I click a processs button it pulls up all the
citations entered that day. It sorts them by the type of citation they
recieve. But I would like them to group by trade so that I can export them
to a PDF file and email them. Does anyone have any idea how to do that.

All the filter functions are in the reports themself.

Here is the string for my process button:

Dim stDocNameViolationNotice As String
Dim stDocNameWRANotice As String
Dim stDocNamePenaltyNotice As String
Dim stDocNameFaxSheet As String

stDocNameViolationNotice = "ViolationNotice"
stDocNameWRANotice = "WRANotice"
stDocNamePenaltyNotice = "PenaltyNotice"
stDocNameFaxSheet = "FaxCoverSheet"

DoCmd.OpenReport stDocNameViolationNotice, acViewPreview
DoCmd.OpenReport stDocNameWRANotice, acViewPreview
DoCmd.OpenReport stDocNamePenaltyNotice, acViewPreview
DoCmd.OpenReport stDocNameFaxSheet, acViewPreview
 
Top