Connecting Tech Pros Worldwide Forums | Help | Site Map

Printing multiple reports!

Sigurd Bruteig
Guest
 
Posts: n/a
#1: Nov 12 '05
Hi all!

I have a problem printing multiple reports. The code i use is:
Dim stDocName As String
stDocName = "rptInvoice"
DoCmd.OpenReport stDocName, acNormal, , "[Invoicedate] = date()"
The problem is that invioce details is printed several times on the same
invoice and only the first page is shown as first page, even if all reports
have only one page.
I gess I have to loop trough the code, but I can't figure out how to.

Sigurd




paii
Guest
 
Posts: n/a
#2: Nov 12 '05

re: Printing multiple reports!


Assuming you are printing multiple invoices per report run. You need to move
your Invoice page header to the Group header of the Invoice number. The
report Header / Footer only prints once per report run

"Sigurd Bruteig" <s-brutexxx@online.no> wrote in message
news:JwCeb.27138$os2.375425@news2.e.nsc.no...[color=blue]
> Hi all!
>
> I have a problem printing multiple reports. The code i use is:
> Dim stDocName As String
> stDocName = "rptInvoice"
> DoCmd.OpenReport stDocName, acNormal, , "[Invoicedate] = date()"
> The problem is that invioce details is printed several times on the same
> invoice and only the first page is shown as first page, even if all[/color]
reports[color=blue]
> have only one page.
> I gess I have to loop trough the code, but I can't figure out how to.
>
> Sigurd
>
>
>[/color]


Sigurd Bruteig
Guest
 
Posts: n/a
#3: Nov 12 '05

re: Printing multiple reports!



"paii" <paii@packairinc.com> skrev i melding
news:vnlvs6dcoeuk2e@corp.supernews.com...[color=blue]
> Assuming you are printing multiple invoices per report run. You need to[/color]
move[color=blue]
> your Invoice page header to the Group header of the Invoice number. The
> report Header / Footer only prints once per report run[/color]

Thank you!
I will try this out

Sigurd


Closed Thread