Tuesday, August 13, 2013

SSRS Report - Showing Header objects only on First Page

To hide the header objects (textboxes, images) that hold the header information on pages other than first one it's possible to control visibility of objects by a conditional expression lok like the following one:
=iif(Globals!PageNumber = 1, FALSE, TRUE)

The expression property will be accessible with below steps:
right-click on the header object (Image, text box) -> choose properties -> visibility -> select "Show or hide based on expression" -> insert expression above


Share/Bookmark

1 comment:

Unknown said...

Thank you for this tip. Question. How do you move the detail rows up to replace the white space created when lines are no longer visible on pages 2 and beyond?