RDLC Report Header Issue

Hi All,

I have question regarding RDLC report . I know that, when you are not want to print header in first page and last page header, we can set print Properties PrintOnFirstPage ,PrintOnLastPage is False.

But I want to only print header in first page & last Page report but I don’t want to print Header between first and last page. for that what i do ,please give me suggestion.

hi Akkrahul,

You can put all the textboxs in a Rectangle, then set the Visibility of that Rectangle to show only in First Page or Last Page.
You can use Global Variable: PageNumber and TotalPageNumber for this

  • First Page= PageNumber = 1
  • Last Page = PageNumber = TotalPageNumber.

Thanks,