Reporting Services: Tablix RepeatColumnHeaders doesn’t work on some reports

It’s a bit wonky from what I’ve managed to dig up. In your grouping pane, select advanced mode, then select your outermost static row. You should then see the “RepeatOnNewPage” property. Update: finding Advanced Mode: The comment by @HCL links to the other answer by @user359904, that has the info on how to find and … Read more

What are the valid Style Format Strings for a Reporting Services [SSRS] Expression?

Format with Currency format string =Format(Fields!Price.Value, “C”) It will give you 2 decimal places with “$” prefixed. You can find other format strings on MSDN: Adding Style and Formatting to a ReportViewer Report Note: The MSDN article has been archived to the “VS2005_General” document, which is no longer directly accessible online. Here is the excerpt … Read more

Passing a parameter via URL to SQL Server Reporting Services

First, be sure to replace Reports/Pages/Report.aspx?ItemPath= with ReportServer?. In other words, instead of this: http://server/Reports/Pages/Report.aspx?ItemPath=/ReportFolder/ReportSubfolder/ReportName Use this syntax: http://server/ReportServer?/ReportFolder/ReportSubfolder/ReportName Parameters can be referenced or displayed in a report using @ParameterName, whether they’re set in the report or in the URL. You can attach parameters to the URL with &ParameterName=Value. To hide the toolbar where parameters … Read more