1

Is it possible to display a page header only for the first page of a report and not have it repeat on subsequent pages?

I am trying to simple display the title of the report at the top of the first page and do not want it repeat. I know this is probably a simple question but kind of new to SSRS

Thanks in advance

Joshylad
  • 133
  • 1
  • 16
  • See this question it should help. https://stackoverflow.com/questions/16306092/ssrs-report-builder-only-show-header-on-first-page-with-page-numbers – Alan Schofield Oct 08 '18 at 16:05
  • Possible duplicate of [SSRS Report Header](https://stackoverflow.com/questions/52715263/ssrs-report-header) – Wolfgang Kais Oct 09 '18 at 20:14

2 Answers2

1

If you really want to do it, you can do it with this expression. Put a textbox in the header and write the following code:

=IIF(Globals!OverallPageNumber = 1, "This is the header only for Page 1", Nothing)
Strawberryshrub
  • 3,301
  • 2
  • 11
  • 20
-1

I think that what you're after is a "Report Header". Right-click in the gray area next to the report surface and select "add Page Header".

Frank Ball
  • 1,039
  • 8
  • 15