vote up 2 vote down star

Out of the box SSRS reports cannot have data exposed in the page header. Is there a way to get this data to show?

flag

5 Answers

vote up 4 vote down check

One of the things I want in my reports is to have nice headers for my reports. I like to have a logo and the user's report parameters along with other data to show to give more information for the business needs the report needs to clarify. One of the things that Microsoft SQL Server 2005 Reporting Services cannot do natively is show data from a Dataset in the header. This post will explain how to work around this and how easy it is.

Create the Report Server Project in the Business Intelligence Projects section and call it AdventureWorksLTReports. I use the AdventureWorksLT sample database from CodePlex.

alt text

Next show the Page Header by right clicking in the Report area with the designer.

alt text

The Page Header will appear. If you want to show the Page Footer this can be accessed from the same menu as the Page Header.

alt text

I created a stored procedure that returns data for the Sales Order to be presented in the Page Header. I will show the following information about the Sales Order in the Page Header:

  • Order Date
  • Sales Order Number
  • Company
  • Sales Person
  • Total Due

I create a TextBox for each of my data fields in the Page Header along with a TextBox for the corresponding label. Do not change the Expression in the TextBoxes that you want the Sales Order data in.

alt text

In the Report Body, place a TextBox for each data field needed in the Page Header. In the Visibility for each TextBox, select True for Hidden. This will be the placeholder for the data needed in the Page Header.

alt text

Your report should look similar to the screenshot shown below.

alt text

The last step and most important is to reference the Hidden TextBox in the TextBoxes located in the Page Header. We use the the following Expression to reference the needed TextBoxes:

=ReportItems!.Value

Your report should now look similar to the following:

alt text

Your Report preview should now have the Sales Order Header data in the Report Header.

alt text

link|flag
vote up 3 vote down

You have to do it through Parameters. Add a parameter for each piece of data you would like to display, then set the parameter to Hidden. Then set the default value to "From Query" and set the Dataset and Value field to the appropriate values.

link|flag
vote up 1 vote down

This technique wouldn't work if your report spans over multiple pages, use queried parameters instead, and set the textbox value to =Parameters!Name.Value as per this article.

link|flag
It works very well, I do it in long reports spanning multiple pages What you need to do, is to watch where you put your placeholder fields, I use an table to show tabular data, and creates extra columns which I hide. no problem at all. – neslekkiM Oct 6 '08 at 7:42
This doesn't work if the table doesn't span all of the pages in the report. – AaronSieb Nov 4 '08 at 17:48
vote up 0 vote down

Here are two possible workarounds:

  1. You can place the databound field within the body of the report as a hidden textbox, and then in the header place another textbox with it's value pointed at the the one hidden within the body.

  2. Try using report parameters to store the data, and use those parameters to access the data in the header.

link|flag
vote up 0 vote down

I'm with Orion Adrian here. Report parameters are the way to go.

link|flag

Your Answer

Get an OpenID
or
never shown

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