How to show data in the header of a multi-page SSRS 2005 report?

This question was very useful, however, I have a list control in my report, and when the report grows by more than 1 page, the data in the header is displayed only on the last page of the report.

Apparently, hidden text fields should be on every page of the report for the header to function properly. How should I do it? The only control I have on the list is a text box with a bunch of text that grows more than 1 page.

+3
source share
4 answers

sExchange website to help !!!

, , ; reference = Parameters! Name.Value .

+3

SSRS DataSet , . ( DataSet) Hidden true.

: =ReportItems!TextBox1.Value, . , , , , .

+4

, , null .

:

In the Available Values ​​section:

check the box "from the request" and specify the data fields, value fields and label fields.

Below the default values:

check the box "from the request" and specify the data, value fields.

Now specify the value for the text box in the footer / header as =Parameters!Footer.Value( Footer- parameter name).

+1
source

hidden text fields can be placed in the rectangle, which was the repeatwith attribute, which will be your list item.

0
source

Source: https://habr.com/ru/post/1697433/


All Articles