reporting-services

Microsoft.ReportingServices.Interfaces.dll missing for SSRS 2005

喜你入骨 提交于 2020-01-14 19:51:31
问题 I am missing this DLL reference in c:\program files\SQL Server\90\Tools\Binn. I'm assuming that this is because I didn't install the 2005 client. I installed all of the services for 2005, the database instance, reporting services instance, SSAS and SSIS. I installed the 2008 client though, not the 2005 client, and 2008 database instance. So I assume it's because I didn't install the client, but does something else give me this DLL? Another install or a SDK or something? Thanks. 回答1: As a

What does “scope parameter that is not valid for an aggregate function” mean?

守給你的承諾、 提交于 2020-01-14 19:15:25
问题 The expression =FormatNumber(Avg(CInt(Code.FirstSplit(Fields!AvgLOSC4.Value)), 0), 0) results in the following error message when I try to update my report in the SSRS Manager. "The value expression for the textbox ‘textbox16’ has a scope parameter that is not valid for an aggregate function. The scope parameter must be set to a string constant that is equal to either the name of a containing group, the name of a containing data region, or the name of a data set. (rsInvalidAggregateScope)."

Use multiple ReportItems in one expression in RDLC Report

柔情痞子 提交于 2020-01-14 13:53:19
问题 I want to display page wise sum of 2 columns in footer.for that I am using following expression in footer =Sum(ReportItems!col1.Value) + Sum(ReportItems!col2.Value) but it gives following error " The Value expression for the textrun refers to more than one report item. An expression in a page header or footer can refer to only one report item. " anybody knows how can I solve this issue and display page wise sum in footer ? Thanks 回答1: Here is simple workaround for your problem: Add single

SSRS 2008 R2 - Printing in portrait rather than landscape from report server link

牧云@^-^@ 提交于 2020-01-14 13:46:12
问题 Having an issue with one of my SSRS reports where if I print direct from the server it prints in portrait and thus cuts off the left hand side of the report, basically it seems to print off the right side OK and prints as far left as possible within the page. It is not as if the rest of the report gets printed on a seperate page thats it. If I export to PDF and print it works fine, it seems to do only do this when printing from the report server. Interactive Size and page size are both Width

SSRS stacked bar chart label position

ε祈祈猫儿з 提交于 2020-01-14 13:35:08
问题 I am using SQL Server 2012. SSRS I have a stacked bar charts that includes interest and dividends. I would like to add the sum of these values to the area just above the stacked bar chart. I have tried adjusting various properties for the labels but I can't get the label position to be anywhere but the middle of the stacked bar chart. Any ideas how to get these labels to be just above the stacked bar charts? 回答1: There is not a way to do this with settings. Here are a couple of links that

How do I change the Report Designer Ruler unit from Inches to centimetres?

≯℡__Kan透↙ 提交于 2020-01-14 13:07:03
问题 A simple (I hope) question, I'm using Visual Studio, I create a new report in SQL Server Business Intelligence Development Studio. In layout view the ruler is in inches, I would like to change it to centimetres. Update 1 Changing the regional settings worked. Is it not possible to do this without changing the regional settings? I would have hoped this would be a setting within Visual Studio. 回答1: Try the Windows Regional Settings? 回答2: Not sure how to set this in BIDS, but if you open the RDL

How to freeze First Column in tabular Report?

≯℡__Kan透↙ 提交于 2020-01-14 10:16:12
问题 I have a Table Report with 70 columns. My requirement is to freeze the First Column as I scroll horizontally. I have tried checking row headers in Tablix properties, but still it's not working. How can I freeze the first Column? 回答1: Here are the steps for Freezing columns/rows in SSRS Step1. Go to Groupings pane at the bottom and select Advanced Mode. Step2a. Select the Static Member under Column Groups and it will highlight the column where it points to. In the properties mark the FixedData

TSQL Passing MultiValued Reporting Services Parameter into Dynamic SQL

半世苍凉 提交于 2020-01-14 06:49:09
问题 Duplicate of : TSQL varchar string manipulation I'm building a dynamic SQL statement out of parameters from a reporting services report. Reporting services passes MutiValue Parameters in a basic CSV format. For example a list of states may be represented as follows: AL,CA,NY,TN,VA In a SQL statement this is OK: WHERE customerState In (@StateList) However, the dynamic variant isn't OK: SET @WhereClause1 = @WhereClause1 + 'AND customerState IN (' + @StateList + ') ' This is because it

Jump to specific page in reporting services

对着背影说爱祢 提交于 2020-01-14 05:51:26
问题 I have a multipage reporting services report, and i would like to start from a specific page, not page one as default. Is there a way to do this? 回答1: 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=999 Where "Section" parameter is your Page Number. In the HTML Viewer, there are many options available that can be used to controlling report rendering. This is

How do you view SQL Server 2005 Reporting Services reports from ReportViewer Control in DMZ

元气小坏坏 提交于 2020-01-14 05:39:10
问题 I want to be able to view a SQL Server 2005 Reporting Services report from an ASP.NET application in a DMZ through a ReportViewer control. The SQLand SSRS server are behind the firewall. 回答1: `So I had to change the way an ASP.NET 2.0 application called reports from pages. Originally, I used JavaScript to open a new window. ViewCostReport.OnClientClick = "window.open('" + Report.GetProjectCostURL(_PromotionID) + "','ProjectCost','resizable=yes')"; The issue I had was that the window.open call