Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Report Builder: Can I link to a specific part of a report?

I would like to link to a specific section of a report from another report. A quick search on the internet didn't give me any suggestions, so I thought I would ask you smart folks here ;-).

I'm really looking for something like anchors in HTML but for a report.

like image 761
confusedKid Avatar asked Nov 05 '22 03:11

confusedKid


1 Answers

If you know already the page of the report you want to jump, then instead of the action "Go to report" I think you should use "Go to URL" and in the expression field insert something like:

"http://myrsserver/reportserver?http://portal/reports/sample%20reports/departmental%20sales.rdl&rs:Command=Render&rc:Zoom=Whole%20Page&rc:Parameters=collapsed&rc:DocMap=true&rc:Section=2&CategoryID=" & Fields!CategoryID.Value & "&CategoryName="& Fields!CategoryName.Value

where Section parameter is the page number.

like image 193
Hari Avatar answered Nov 30 '22 12:11

Hari