How to repeat text box in every page in ssrs

12,008

You can look into the "RepeatWith" property of your textbox, which should appear on every page where the target component will be present. It should work even if there are other elements before, between or after them.

You could also put the textbox in a table's header, put the rest of your report inside that table's body, and then repeat the table header on every page. However this sounds very painful to implement and maintain, I would avoid that solution unless absolutely necessary.

Share:
12,008
Alex Mathew
Author by

Alex Mathew

Updated on November 29, 2022

Comments

  • Alex Mathew
    Alex Mathew over 1 year

    Is it possible to repeat textbox in every page without giving it on the page header in SSRS. Because before this textbox I have few data to be displayed in the 1st page. So if I put both in page header and making visibility hide for the data that should appear only in 1st page, then in other pages excess header space will come.. So is it possible to repeat text box or table in every page?

  • Jack Casas
    Jack Casas about 2 years
    "RepeatWith" property depends on a data element, table or whatever. Normally this type of request is something not dependant on the data it self, like the header. A very common request is to have a rotated text on the edge of the report. How to achieve this?