reporting-services

Count rows of a filtered tablix in SSRS

六眼飞鱼酱① 提交于 2019-12-05 17:38:01
问题 I want to show row count of my filtered tablix in a text-box inside my SSRS report header. I googled quite a bit but nothing helped. Suggestion at this link gives me count but that is restricted to count of rows coming on current page. Even if my result has 2 pages, I get count of rows in first page only. I also tried by adding a new column for row number and then show it's value in header's text-box but the problem remain same as above. I tried using global shared variables in report(I am

Report Viewer control not showing report from SSRS

谁说我不能喝 提交于 2019-12-05 17:36:29
I'm using MS Report Viewer 10 in VS 2013; the project is being upgraded from VS 2010. I have worked through a series of issues relating to Report Viewer, and have the control itself up and running. I have a number of reports in SSRS, and I have confirmed that the reports themselves work properly. I have a Web Forms ASPX page for data input. It passes data via JSON to a popup ASPX page that contains the Report Viewer control. I am running IIS Express 7, SQL Server 2008 R2 (v10.50), and a current target framework of .NET Framework 4.5. Report Viewer does not return any report -- no error message

The attempt to connect to the report server failed - Setting URL and Path in ASP.NET?

隐身守侯 提交于 2019-12-05 17:22:40
I'm trying to connect to a Report (rdlc file) using ASP.NET Web Applications. I'm working with VS2010 and the Report Server is version 2008. I have the following URL to the report which works fine: http://server url/Products/_layouts/ReportServer/RSViewerPage.aspx?rv:RelativeReportUrl=/Products/Dashboards/Product_tool.rdl&Source=Server Url/Products/Dashboards/Forms/AllItems.aspx&DefaultItemOpen=1 When i enter that URL in my browser it first asks for a username password. When i log in then the Report shows up just fine. Now i need to display this report in a Report Viewer . So i added a Report

SQL Server 2005 Reporting Services: How to count rows that are not null? Any hints for calculating totals?

北战南征 提交于 2019-12-05 17:21:42
Using Reporting Services in SQL Server 2005: Is there a way to count only records that are not null; similar to "COUNTA" in Excel? I would think this would be very simple process, but nothing I have tried has worked. For example, I have tried using the following expression for "Completed", which is one column I am trying to count: =count(IIF(Fields!Completed.Value="END")) However, this throws the "wrong number of arguments" error. "Completed" will have a value of "End" or be null. If necessary , I can try to work this into my SQL query, but the query is already incredibly complicated. Also, I

What is causing a scope parameter error in my SSRS chart?

邮差的信 提交于 2019-12-05 17:14:36
Why am I getting this error in my chart? ( Chart Image ) I am using this expression in the chart: Series: =Sum(Fields!Mins_Att.Value)/Sum(Fields!Mins_Poss.Value) Series 1: =Sum(Fields!Mins_Att.Value, "Chart2_CategoryGroup2")/Sum(Fields!Mins_Poss.Value, "Chart2_CategoryGroup2") and I am getting this error: The Y expression for the Chart 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 the name of group, data region or name of dataset. The scope of "Chart2_CategoryGroup2" doesn't exist in the report. 来源: https:/

SSRS and AD Groups

感情迁移 提交于 2019-12-05 17:12:19
I had a request come through asking me to create an AD Security group that could be used in SSRS for users to get reports. There are currently other AD groups that work but the one I have created does not allow users to connect. Creating AD groups isn't real difficult and I know I have it set up correctly. Does anyone have any input as to why the group is not working? I have no knowledge of SSRS or SQL in general so any help would be appreciated. You have to assign that AD group an SSRS Role in SSRS Manager Depending on permission you want to give it. 来源: https://stackoverflow.com/questions

SSRS 2008 - Reporting Services Webpage is Blank except for headers

白昼怎懂夜的黑 提交于 2019-12-05 16:33:42
I'm getting blank page when I open the Report Manager: I've got a header - "...Reporting... HOME", and then just empty space. I'm on SQL 2008 and Windows Server 2008 R2 Standard. Any ideas how to fix? I've confirmed that I am logged in as a local administrator. I tried adding the URL to trusted sites but that didn't seem to help either. Update When I go to the ReportServer URL I get this error message: Reporting Services Error -------------------------------------------------------------------------------- The permissions granted to user 'DTNT\greg' are insufficient for performing this

Running all SSRS reports through one report user ignoring own users domain

耗尽温柔 提交于 2019-12-05 16:23:35
I have the following code which returns the reports from my SSRS server, afterwards I then store the paths to each individual list which allows users to run them from within the application. The below works fine. NetworkCredential serviceCredentials = new NetworkCredential() { UserName = username, SecurePassword = EncryptionManager.DecryptToSecureString(password), Domain = domain }; reports = new ObservableCollection<object>(reportsManager.FindReports(reportsWebService, reportsFolderName, serviceCredentials)); //FindReports ReportingService2005 rs = new ReportingService2005(); rs.Url =

Interactive sorting In SSRS on Values - Matrix report

大憨熊 提交于 2019-12-05 16:22:27
I want a interactive sorting in SSRS matrix report. From database we are getting 3 columns -PrimaryKey,Columns and Value. We are grouping rows by Primary Key and grouping column by Columns and use Value as data. My Matrix Report - ID [Columns] [Primary Key] Values Output of the Matrix report - ID FirstName MiddleName Lastname 1 Rajiv Jha Sharma 2 Prem Kumar Bose 3 Usha Shamila Praveena I am able to use the interactive sorting on ID because ID is group by rows but I want to use the interactive sorting on dynamic cloumns values like FirstName,MiddleName and LastName. Expected result when we

RowNumber for group in SSRS 2005

有些话、适合烂在心里 提交于 2019-12-05 16:12:28
问题 I have a table in a SSRS report that is displaying only a group, not the table details. I want to find out the row number for the items that are being displayed so that I can use color banding. I tried using "Rowcount(Nothing)", but instead I get the row number of the detail table. My underlying data is something like ROwId Team Fan 1 Yankees John 2 Yankees Russ 3 Red Socks Mark 4 Red Socks Mary ... 8 Orioles Elliot ... 29 Dodgers Jim ... 43 Giants Harry My table showing only the groups looks