Search code examples
ssrs-2008reporting-servicesreportbuilder

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.


Solution

  • 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.