Smur
Smur

Reputation: 3113

Force SSRS 2005 to print a new page

I have a field on the footer that may contain more text the the textbox would support. If it does, I need the report to print another page, even if it's completely empty, containing only the footer field.

Basically, if a condition is true, I want the report to print a new page, displaying my footer in it, even if there's nothing else to be printed.

How can I achieve this, preferably with field expressions?

And if you have a solution that's not a field expression (external code for example), could you also point me to the basics of it?

Upvotes: 0

Views: 1743

Answers (2)

Chespy
Chespy

Reputation: 45

=iif(Globals!PageNumber Mod 2,True,False) this helped me to show (visibility) a text box on even pages only from my footer

Upvotes: 0

ykatchou
ykatchou

Reputation: 3727

On any block you have the property PageBreak, you can choose begin, end or none. By choosing end, a page break will be insered after the block.

Upvotes: 1

Related Questions