I am building a SSRS 2005 report that has potentially multiple pages. I would like to put in a hyperlink so that it appears on the top of every page. The hyperlink links back to the same report – basically I have a “summary” and “detail” mode and want to have hyperlinks to switch between.
So far I tried two approaches:
- Put a textbox in the body, and in Properties -> Navigation, jump to a report. This works fine except it only shows on the very first page.
- Drag the same textbox in the header of the report. Now it appears on every page, but clicking on it results in an error message: “The source of the report definition has not been specified”.
google turned up nothing, what now?
Thanks.
The best way to do this is to implement the summary report to drill-down into the detail report and use the data on the detail row of the summary report’s table to access the detail of that row as a detailed report. For example, let’s assume the summary report is a list of invoices with total billed, and the detail report shows the items that were on that invoice.
If you just want to link directly to the complete detail report from the summary report and vice versa, you can use the same style on navigation settings but this time do it on a textbox on the header row of your table and make sure that the header has the RepeatOnNewPage property set to True so that it appears on every page.