reporting-services

Deploying SSRS RDL files from VB.Net - Issue with shared datasources

谁说我不能喝 提交于 2019-12-12 03:34:52
问题 I am currently developing a utility to help automate our report deployment process. Multiple files, in multiple folders, to multiple servers. I am using the reportservice2010.asmx web service, and I am deploying my files to the server - so most of the way there. My issue is that I have shared data sets and shared data sources, which are deployed to individual folders, separate to the report folders. When the deployment occurs the web service looks locally for the data source rather than in

How to use multivalue parameters in SSRS

荒凉一梦 提交于 2019-12-12 03:34:18
问题 I have 1 table. 1 have 1 multi-value parameter listing all properties called PROPERTIES. I want the table to display 1 property per row at a time. The table has roughly 20 columns, referencing different datasets throughout. All of the datasets that reference the property have a: WHERE RMPROPID IN (@PROPERTIES) and the dataset has @PROPERTIES value of: =JOIN(Parameters!PROPERTIES.Value,",") (This creates the list of properties selected) The table has a single row, referencing the different

SSRS Report Query Not Working, but does when hardcoded parameters

混江龙づ霸主 提交于 2019-12-12 03:33:21
问题 I have an SSRS report that has 3 parameters: @start (datetime) @end (datetime) @plantid (string from an external query) When I run the report regularly, it times out. When i run it in the designers query builder, it times out. However, when I hardcode the parameters into the query builder, it works. The whole thing works fine in Management Studio Why is it when I provide the parameters in the query within query designer, it runs, but when i fill in the parameters via the report it does not?

calculate the time difference between two dates in HH:MM format using ssrs

梦想与她 提交于 2019-12-12 03:29:57
问题 I need to generate the time difference between tow dates in SSRS in HH:MM format. How can i achieve this? My data source is MS CRM FetchXML. Eg : Date1 : 01/01/2016 04:05 AM Date2 : 01/03/2016 02:15 PM Time Differece Should be : 58:10 Regards, Sandeep 回答1: I might be a little too late but was needing to calculate the elapsed time between two times. Hence I stumbled up this link https://social.msdn.microsoft.com/Forums/sqlserver/en-US/26d8b4fc-6862-42a0-ac7f-0caa93ba2fde/to-find-ellapse-time

SSRS 2012. Replicate grouping results in report in Query Designer

时间秒杀一切 提交于 2019-12-12 03:27:39
问题 New to SSRS 2012 & struggling. I have a report - containing a subreport - on client data. When testing with one client (just to make sure everything was OK) it works perfectly. When the filter's removed, it's timing out (it's actually saying it's been cancelled by the user, which it hasn't). Obviously the inclusion of the subreport is the problem (as the main report runs fine without it). My subreport can validly return multiple records per client. The subreport is grouped on ClientId. I then

How to display reports (Html.ReportViewer) properly in bootstrap?

喜欢而已 提交于 2019-12-12 03:23:44
问题 I have a following problem. I want to create 3x3 table(or view) with @Html.ReportViewer inside. I want to display all of report without a scrolls. I have following code in my controller: ReportViewer rptViewer = new ReportViewer(); rptViewer.ProcessingMode = ProcessingMode.Remote; rptViewer.SizeToReportContent = true; rptViewer.ZoomMode = ZoomMode.FullPage; rptViewer.AsyncRendering = false; //Dodatki okna: rptViewer.ShowBackButton = false; rptViewer.ShowExportControls = false; rptViewer

Insert data in ssrs table in the query

天涯浪子 提交于 2019-12-12 03:21:49
问题 I would like to insert some data in the ssrs table. I would like to show it like this here: How can I add these data in my query in SSRS. I have no possibility to change something in the database. | P1|P2 |P3 |P4 |P5 |P6 |P7 |P8 Group A|84%|87%|81%|81%|79%|96%|86%|88% Group B|66%|22%|79%|64%|53%|94%|5% |23% The Problem is: Last week on wednesday the database did not recorded the data from Group A and Group B. And I have no possibility to correct/add the missing data in the database. And thats

Percentage SSRS

可紊 提交于 2019-12-12 03:19:16
问题 I have two text boxes in my SSRS report. The Total Number is simply - =COUNT(Fields!CommunicationId.Value) The First Call Resolutions = =SUM(Fields!FirstCallResolution.Value) The FirstCallResolution simply has a 1 for when it is a first call resolution and a 0 when it is not. What would the expression be to get this to show the % correctly in SSRS? Thanks Edit : format code 回答1: You can do calculations in your expressions. Try =(SUM(Fields!FirstCallResolution.Value) / COUNT(Fields

Total SUM in SSRS doesnt display corrent number

﹥>﹥吖頭↗ 提交于 2019-12-12 03:18:19
问题 The reason for that probably lays in my query, because I used MAX to pick up the unique record. But now my SSRS report does not display correct NetWrittenPremium amount. What would be a workaround for this problem? Here is my query: select b.YearNum, b.MonthNum, ClassCode, QLL.Description, SUM( Premium) as NetWrittenPremium FROM tblCalendar b LEFT JOIN ProductionReportMetrics prm ON b.MonthNum=Month(prm.EffectiveDate) AND b.YearNum = YEAR(EffectiveDate) AND prm.EffectiveDate >=DateAdd(yy, -1,

Sum Of Time In RDLC Report

喜你入骨 提交于 2019-12-12 03:15:53
问题 I want to sum this WorkedHours in RDLC Report..WorkedHours type is Varchar.. WorkedHours 04:00:25 07:23:01 11:02:15 like Total: 22:25:41 How Can I Achieve It ? 回答1: You can use the TimeStamp class gether with the Sum function, follow an example: =TimeSpan.FromMinutes(Sum(Fields!Dirigindo.Value)) 回答2: You need to either calculate it in the Dataset. Perhaps casting it to a proper date time format (you can give it a dummy date component such as 1900-01-01 and then perform the calculation use