reporting-services

How to open a subreport on the piechart silce click?

本小妞迷上赌 提交于 2019-12-13 04:16:33
问题 Please look at the below image If we click on the Blue section, then the GAP related report link will open. Likewise, if we click on the Orange section, the NC related report will open. How to do it using SSRS? Please help 回答1: I will add screenshots for Refrence, Step by step way to perform Pie chart. just click on data lables or simply numbers which are shown, then on Right hand side under properties you will see option and there you see Action. There you can choose go to Report and

Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005

最后都变了- 提交于 2019-12-13 04:15:56
问题 I have an ASP.NET website on IIS and it generates Excel files automatically, the problem is I keep getting this error: "Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005." I have tried almost everything on the net to solve this problem but I couldn't: I have changed the DCOM configurations of Excel for the user used for the website, created Desktop folder in System32 and SysWOW64 with full control for

RDLC paging issue

拜拜、爱过 提交于 2019-12-13 04:14:37
问题 I have a problem with a report that is very long. It has around 60 pages when it is in print layout, but it only shows me 1 of 1 page in normal layout. The report in normal layout is scrolling very slow and I think it keeps all 60 pages into one and he can't draw it quick enough. Any suggestion how to split in multiple pages while in normal layout without changing the print layout? (i do not have any grouping that I could use for page breaks and the number of rows / page is not fixed either)

SQL Server 2008 filtering

浪尽此生 提交于 2019-12-13 04:13:34
问题 I am joining 4 tables together from the same db. My query is returning the data i am after, but is also returning multiple rows for some records. I only want the row with the most recent LastReportedHrsDate for each WKO_WorkOrderID. Can someone help me with the correct code to filter? Code (I am still pretty new to SQL..): SELECT dbo.PLT.PLT_ItemID, SUM(dbo.PLD.PLD_IssueQty) AS Issued, dbo.WKO.WKO_WorkOrderID, dbo.WKO.WKO_RequiredQty, dbo.WKO.WKO_CompleteQty, dbo.WKO.WKO_RequiredQty - dbo.WKO

Add Web Reference prompts for credentials with “Discovery Credential” dialog but won't accept valid credentials

人走茶凉 提交于 2019-12-13 04:11:50
问题 I'm attempting to add a web reference to my ASP.Net 3.0 project. This is a reference to the SQL Server Reporting Services web service. I have verified the service is up and running, but when I try to add the web reference in my project, I am prompted for my credentials, which I enter, and then prompted again and again and again. I have to hit cancel to stop the vicious cycle. When I do that the service definition comes up in the window, but the "Add Reference" button is disabled so I can't

Print a report Multiple times, (SSRS reporting services)

北战南征 提交于 2019-12-13 04:11:41
问题 I am currently working on SSRS reports 2008 displaying them in Website created in VS 2010 i.e., ASP.NET 4.0 C#. My current issue is I have a report with only a Letterhead on it. And this report page needs to be printed multiple times based on the value in number of pages TextBox as shown To be a bit descriptive: When the user enters the value in Number of Pages TextBox and clicks on this Print button icon, he/she lands on the page with ReportViewer control on it, displaying the report.This

SSRS BIDS clustered stacked bar chart

北城余情 提交于 2019-12-13 04:08:57
问题 Is there a way to create a chart in BIDS that combines the properties of these charts a horizontal stacked bar chart like this: http://www.google.com/imgres?start=230&hl=en&sa=X&biw=1920&bih=1061&addh=36&tbm=isch&prmd=imvns&tbnid=0EL4x7-sHuCIyM:&imgrefurl=http://www.phplot.com/phplotdocs/ex-horizstackedbar.html&docid=iqqzU8FDMbnIAM&imgurl=http://www.phplot.com/phplotdocs/examples/horizstackedbar.png&w=800&h=500&ei=U21kUJ_3JaTq0gH2yoDACw&zoom=1&iact=hc&vpx=1172&vpy=771&dur=3864&hovh=177&hovw

Label expression works on the series groups, but not on category groups

隐身守侯 提交于 2019-12-13 03:59:09
问题 In the chart I am building the series and categories labels need to be converted before displaying. Conversion is trivial - replacing some charater with another and taking left X characters. Entered into the properties of the Series groups/General/Label the expression works fine. The legend shows the converted series names. I expected that the same should be true for the categories groups and the converted labels should show along the X axis. But that is not working - the X axis labels are

Error while accessing report service(remote mode) from Report server with in a windows application

蓝咒 提交于 2019-12-13 03:58:54
问题 I got following error while accessing report from report server . I am using a windows application to access my report.This is my code: private void rptviewer_Click(object sender, EventArgs e) { string reportName = "Crime_Traking_Report"; string reporturl = @"http://13.800.91.136/ReportServer"; string reportpath = @"/iSROReportsRK7/"; reportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Remote; reportViewer1.ServerReport.ReportServerCredentials = new

SSRS Report Header

心不动则不痛 提交于 2019-12-13 03:47:23
问题 I am using the following expression to only display some text in my report header only for the first page of the report =IIF(Globals!ExecutionTime = 1, "My Text Here", Nothing) But this means on all the subsequent pages at the top of the report there is just some empty space where the text should be, see below 1st page: --------------------------------------------------------------- My Text Here --------------------------------------------------------------- Rest of the report Subsequent