Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an SSRS report. At the level of the footer I'm showing the table index of a table added in the report body, because it contains more than 500 pages (the table index is drawn from code "concatenating the report group name with the page number").

I need to pull this data from the footer to the body; I can't insert this data directly in the report body part, because it contains a page number, which is forbidden in the body. So: is it possible to read this data and insert it in a new report, or is there any other solution that would help?

share|improve this question

1 Answer

The report body is not aware what pages will be generated when the report is rendered. You cannot achieve what you want in the report body.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.