ssrs-2008

How to set Fixed Rows of Tablix in SSRS

谁都会走 提交于 2019-12-23 06:58:31
问题 How to do the tablix fix rows? I need to fix the report to maximum 5 rows, if record more than 5 rows will not show . If records is only 3 record, first,second & third rows will place the data and 4 & 5 rows will leave it blank. 回答1: Ideally you should achieve it in SQL query or stored proc. However if you want to achieve it in RDL then you have to use RowNumber function in expression.Create a Row group and then restrict data set.Use expression =CEILING(RowNumber(Nothing)/5) Please have a

how to change filename of exported SSRS report

淺唱寂寞╮ 提交于 2019-12-23 05:27:18
问题 I have created SSRS report and want to change the name of file with adding Date to it. I really appreciate your help. Already tried https://reportsyouneed.com/ssrs-adding-date-to-exported-filenames/ solution and it doesn't work. 回答1: I got a perfect solution for this Issue. This link works (very well) only if there is no parameter required before export. Code in this link try to get the file name when you click on the file, means when download not ready and report looking for initial inputs.

SQL Server Reporting Services: how to print reports automatically without preview from a web application

南笙酒味 提交于 2019-12-23 05:01:46
问题 I'm using SQL Server Reporting Services and viewing the reports in a web application in ASP.NET. To display the reports, I'm using Report viewer Web control which brings funcionalities of exporting the report and/or printing it, but requires to display a preview of the report before printing it. I need to print a report without doing a preview in the web page? It seems like there's a way to do it in WinForms, but I didn't find a way to do it in WebForms. Any ideas? Thanks David 回答1: I don't

Reporting Services Chart - Hard Coded Series

好久不见. 提交于 2019-12-23 03:15:38
问题 I am developing an SSRS 2008 report which contains a number of simple charts. On the x axis I have the 12 months of this year - Jan 2009 thru December 2009. On the Y is an integer value ranging from 0 to 100 in increments of 10. I am plotting the number of times an issue occurred per month. So January could have a value of 10, February 30, etc. etc. I would like to have a horizontal line/series that is constant and shows the yearly average for 2008. So, say the average was 30 issues per month

Getting multiple integer values in an SSRS parameter

旧城冷巷雨未停 提交于 2019-12-23 03:09:49
问题 How do I get multiple integers into the value field of an SSRS parameter so that I can use an IN statement in my WHERE clause? Bear with me. I think this will end up as a simple syntax question but the explanation is overlong. I have a report that I want to split between two types of staff Dedicated and Bureau. The only way to determine which is which is the hour that the activation occurs, with the dedicated staff working all hours except 12 and 13 (midday to 2pm). I've created a parameter

Localizing SQL Server Reporting Services reports?

十年热恋 提交于 2019-12-23 02:52:36
问题 How would one go about localizing SSRS reports? Let´s say I have a report that contains a label with the text "Total Sales" (in Norwegian language, which is where I come from) and I want to use the same report for our danish and swedish customers, so the actual text needs to change slightly. Do I need to make copies of all the reports and localize them manually, or is there any way to do this in a more automated way? Could I for instance use expressions for those texts instead, and add our

Sub-Report giving error: Report cannot be shown

不问归期 提交于 2019-12-23 01:37:12
问题 I have a SSRS Report with six sub-reports. The sub-reports are using the same shared data source which the main report is using. When I deploy the report and execute, the sub-report place holder shows error: Report cannot be shown. I thought it could be due to shared data source. Therefore, I created separate shared data source for each sub-report. This works. The report starts showing all the results. Please let me know what is this issue. Even though it works, I don't want to create

Accessing variable in SSRS function

僤鯓⒐⒋嵵緔 提交于 2019-12-23 01:29:11
问题 I have a report which lists items from different categories. Need to display category name only when it changes from the previously listed one. My approach is using a custom function to generate appropriate text, however need to persist the previous value somehow. Wanted to use report variable for that, but I'm not sure how can I set its value and access it within the function? Also, does my approach make any sense, or is there any simpler way of doing it? 回答1: Sorry, managed to do it the way

SSRS - Opening DataSet Property Windows Crashes Visual Studio 2013

假如想象 提交于 2019-12-23 01:10:45
问题 I have Web Application in MVC Framework having SSRS Reports inside.. I have designed couple of .rdlc reports in my application. Suddenly from yesterday, when i open report Wizard in New Report or open Add new Dataset in existing report, visual studio stops working. but when i opened backup Project (backup taken before two days), it is working fine.. it allows adding new dataset or working correct report wizard in it.. so i think there is some setting that has been changed in my current

SSRS Consuming WCF Service with Calling User Credentials Issue

独自空忆成欢 提交于 2019-12-22 14:54:29
问题 We currently have SSRS reports that consume WCF service data which needs to use the calling users credentials. On the service side, we use a basic binding to host the service: <binding name="TheBasicHttpBinding" maxReceivedMessageSize="50000000" transferMode="Streamed"> <readerQuotas maxArrayLength="50000000"/> <security mode="TransportCredentialOnly"> <transport clientCredentialType="Windows"/> </security> </binding> <service behaviorConfiguration="DefaultServiceBehavior" name="Web