report footer without page header

  • Thread starter Thread starter nerea
  • Start date Start date
N

nerea

Hello,

I have created a 'report footer' in this way:
text field with some text(t1) 'THIS IS THE END OF REPOT'
a break
other text field(t2) 'YOUR PRIVATE INF WON'T BE DISPLAYED'

I would like to know if its possible to display JUST the
second text field(t2) without the page header.

Thanks

NEREA
 
Nerea

Not sure I understand. Reports have page- and report-level headers and
footers. Are you asking for a way to have a page header (which you haven't
described) not appear, and a report footer appear, but with only one of the
two fields/controls you did describe?

More info, please...

Jeff Boyce
<Access MVP>
 
This is my example:

Page Header:(it appears in all the pages
Label1 Label2 Label3 subtotal

Report footer
Total= xxxx
(break)
Label with the privacy statement.


So I don't want that in the page with the privacy
statement, the fields of the page header appear.

Thanks
 
Nerea

I'm not coming up with any notions for that -- maybe other newsgroup readers
have a solution...

Good luck

Jeff Boyce
<Access MVP>
 
If you add page numbers to your report, you can use code in the On Format of
the PageHeader Section event like:
Private Sub PageHeaderSection_Format(Cancel As Integer, FormatCount As
Integer)
Cancel = Page = Pages
End Sub
 
Back
Top