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.

[445 byte] By [dajrumman] at [2007-12-19]
# 1

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)

RyanAckleyMSFT at 2007-9-9 > top of Msdn Tech,SQL Server,SQL Server Reporting Services...
# 2

There is an extra parentheses in there sorry, it should be:

=Iif(Globals.PageNumber = 2, False, True)

RyanAckleyMSFT at 2007-9-9 > top of Msdn Tech,SQL Server,SQL Server Reporting Services...
# 3

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 text
dajrumman at 2007-9-9 > top of Msdn Tech,SQL Server,SQL Server Reporting Services...
# 4

This behavior where the report body would consume the space of the empty page header & footer is currently not supported.

-- Robert

RobertBrucknerMSFT at 2007-9-9 > top of Msdn Tech,SQL Server,SQL Server Reporting Services...

SQL Server

Site Classified