Header Footer problem
Hi There,
Does anyone know of a way to disable Header and Footer for specific pages?
The desired output is displayed below.
e.g. i want header/footer to be disabled only for page 2.
HEADER
Page 1 Page 2
FOOTER
Thanks.
Hi There,
Does anyone know of a way to disable Header and Footer for specific pages?
The desired output is displayed below.
e.g. i want header/footer to be disabled only for page 2.
HEADER
Page 1 Page 2
FOOTER
Thanks.
You can set a visibility expression on the items in the header or footer. To disable the header and footer items for only page 2, you would use this visibility expression for an item in the header or footer.
=Iif((Globals.PageNumber = 2, False, True)
There is an extra parentheses in there sorry, it should be:
=Iif(Globals.PageNumber = 2, False, True)
Hi Ryan,
Thank you very much for your response, but I have already tried that.
The expression you recommend does make the header/footer invisible for the page 2 but the text will still be displayed after the header and before the footer as shown below. What is desired is to totally disable the header/footer so as to allow the text in page 2 to start flowing from the position of the header downwards.
Header blank text text text text text text text text text text text text text text text text Page 1 Page 2 text text text text text text text text text text text text text text text text Footer blank Desired Output: Header text text text text text text text text text text text text text text text text text text text text text text text text Page 1 Page 2 text text text text text text text text text text text text text text text text text text text text Footer text text text textThis behavior where the report body would consume the space of the empty page header & footer is currently not supported.
-- Robert