I need a report which prints the header on the first page and last page of the report. All other pages will have a different header. Is this possible? If so, how?
You can use code in the On Format event of the Page Header section like:
If Page = 1 or Page = Pages then
'some code here
Else
'some other code here
End If
I believe this requires that you include a control on your report bound to [Pages].
Duane
MS Access MVP
Find out how to get great answers faq219-2884.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.