1
votes

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

2
See this question it should help. stackoverflow.com/questions/16306092/… - Alan Schofield
Possible duplicate of SSRS Report Header - Wolfgang Kais

2 Answers

1
votes

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)
-1
votes

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".