reporting-services

SQL 2005 Reporting Services - Wrong Average Values

…衆ロ難τιáo~ 提交于 2019-12-11 16:35:14
问题 I have a report which basically shows time info. There are three levels or groups: Route Fleet Vehicle Under the Vehicle level, the report shows time info for each trip performed by the vehicle, and a time average for the vehicle. Inside the Fleet level, the report shows time info for each vehicle, and an average for that Fleet. The same applies for the Route level. It lists time info for all the Fleets that travel through that route, and an average for that route. The problem is that I am

Programmatically create SSRS Report in PDF from MVC 2

大兔子大兔子 提交于 2019-12-11 16:34:30
问题 How can i create a SQL Server 2008 R2 PDF Report programmatically from within an MVC 2 Application? i want need to pass a parameter to SSRS. Thanks 回答1: Have a look at Microsoft's documentation on this topic, it is quite verbose. http://technet.microsoft.com/de-de/library/ms154052%28SQL.90%29.aspx 来源: https://stackoverflow.com/questions/4696736/programmatically-create-ssrs-report-in-pdf-from-mvc-2

How to pass multiple values to drilldown report?

可紊 提交于 2019-12-11 16:22:13
问题 I m using sql 2008. I have one matrix on the report. Data will be as follow Maths English Science Gender 5 3 4 Male 1 2 2 Female 4 1 2 Count shows the number of students passed in respective subjects.Data is grouped by gender When user click on count it will be redirect to sub report. Now i want to pass Students Ids to sub report to show that students only. I have tried Join, Split but those functions can be used with parameters only. Not with Fields. Basically i want to pass string of comma

SSRS missing in Visual Studio 2015 (community & enterprise trial version) template

一个人想着一个人 提交于 2019-12-11 16:08:46
问题 I tried to solve my problem by using community and enterprise (trial) version of Visual Studio 2015. Couldn't solve it. Hope somebody can help me. I want to generate a report by using SQL Server Reporting Services (SSRS). In some tutorial I see there are SSAS, SSRS & SSIS under templates | Business Intelligence when a new project is opened in Visual Studio. In my case, I don't see it as shown in the following picture: If I check (my OS is Windows 10 64 bit) System Settings | System | App &

Passing integer parameter to drill-through report

非 Y 不嫁゛ 提交于 2019-12-11 16:08:40
问题 I have a report in SSRS. The report has one string parameter and one integer parameter. Both parameters have default values set up. I have a text box with an Action to the report itself (drill-through report). I tried to pass both parameters to the drill-through report (even by hard-coding the values) but only the string parameter goes through. The integer parameter keeps its default value when the drill-through report is rendered. Do you know if there's an issue with integer parameters in

SSRS Cell Colour Dependent on Another Cell Value

吃可爱长大的小学妹 提交于 2019-12-11 15:42:33
问题 I'm trying change a cell background colour depending on another cell value, or if the cell value has zero I want a dash like this "-". This is the formula I'm using, and currently the cell I want to have the dash in when the other cell is at Zero is showing 0.00 =IIF(Fields!RateAmount.Value = 0,"-",(switch(Fields!PercentageDifference.Value <= -10, "Red", Fields!PercentageDifference.Value >= 10, "Red", True, "Green"))) When searching on here all I can find is an answer for googlesheets, if you

Visual Studio SSRS RDL Files creating a new file (backup) when opened

廉价感情. 提交于 2019-12-11 15:40:39
问题 In VS I have a Solution file with SSRS Project. Within the project there are 8 RDL files. I am experiencing an issue when I open a file that it opens with an asterik (*) and upon closing the window it prompts that I save the file. Then I went to the folder in Windows Explorer, at which time I noticed that Visual Studio was creating new files every time I open the file-- <%FileName%> , <%FileName%- Backup> , <%FileName%- Backup (#)> , <....> . This is wierd. Even wierder, the automatical file

Enable/Disable SSRS parameters

北慕城南 提交于 2019-12-11 15:32:00
问题 I am pretty new to SSRS and I tried searching for the answer before posting here. I want to enable a parameter(dropdown list) when another param (also from a dropdown list) is selected. I only see a visible/hidden property on the param but nothing that would enable/disable it. Would be great if someone could please post an example. Thanks a lot. 回答1: In the Report Manager interface, you can't directly enable or disable a parameter with another parameter (or any code within the report.) But

Which datatype for base64 encoded image?

人盡茶涼 提交于 2019-12-11 14:56:29
问题 Question: In order to store logos in a database and display them dynamically in ms-reporting service, I need to base64 encode the image. It doesn't work with binary saved images, due to MS limitations... Now my question: Which datatype do I use? Varchar, nvarchar or text? I guess varchar would be good enough, since base64 encoded, but images might be larger than 4000 characters... 回答1: Varchar(max) supports up to 2GB, and since the data is already base64 encoded, unicode storage won't be

Report Viewer Doesn't Show report created with Sql Server Reporting Services

坚强是说给别人听的谎言 提交于 2019-12-11 14:53:22
问题 I created some reports in Sql Server Reporting Services, and deployed them in my local report server. When I type URL : http://MyreportServer/ReportServer in my browser I can see my deployed reports, and when clicks on reports links they will show correctly. In my web page I have a report viewer and set report server and report location for it to one of the deployed reports. When I run the project it does not show any thing and the report viewer seems to be disabled. How I can solve this