In article <esWLbYib$GA.1524@cppssbbsa06>,
bernardo...@iname.com says...
> I would like to print a footer for a report but ONLY in the last page and in
> the footer of the page (I have to print it on a pre-impressed paper).
>
>
>
Put your footer text in the report footer section, in design view.
In the Print event of the Report Footer section, add code like this:
Private Sub ReportFooter_Print(Cancel As Integer, PrintCount As Integer)
Me.ReportFooter.Visible = (Me.Page = Me.Pages)
End Sub
That worked for me (just tried it to make sure). -- Ken