There are various ways of doing this,
For one I would carefully consider how to use the report
header and page header and consider to print or not to
print the report header on every page.
A potential other way is to blank certain texboxes
individually based on the page number. You could do this
by using something like the following ;
=IIF(page > 1,"1st header","")
this would print 1st header on first page and nothing on
the following pages.
Hope this helps.
Fons