report footer without page header

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
 
J

Jeff Boyce

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>
 
G

Guest

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
 
J

Jeff Boyce

Nerea

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

Good luck

Jeff Boyce
<Access MVP>
 
D

Duane Hookom

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top