reporting-services

ssrs report : Facing issues with Master detail kind of report

半腔热情 提交于 2019-12-11 04:41:14
问题 I need to generate a report of below format. The header repeats only per page. ItemNr | ItemGenDesc | FulfilmentBin | onHand ----------------------------------------------- CAP100 Capacitor FulFil1 5 binPriority | binBackup | binBackupQty | binMin | binMax ----------------------------------------------------------------- 1 bkBUSLOT2 100 1 5 2 bkBUSLOT3 150 2 6 CAP400 Transistor FulFil12 20 CAP500 Transistor FulFil14 30 binPriority | binBackup | binBackupQty | binMin | binMax -----------------

Cascading Parameters

天涯浪子 提交于 2019-12-11 04:27:15
问题 I have looked at various ways of doing this but cant seem to implement it correctly. I have a 3 parameter report in SSRS @County @LocalAuthority @Ward I want these parameters cascading. So when @county is chosen @LocalAuthority only displays local authorities within that county. And when local authorities are chosen only the wards in those authorities appear. the County to Local Authority is working but Local Authority to Ward isn't. The correct wards are showing in the drop down parameter

SSRS 2012 display only group totals in tablix (?)

耗尽温柔 提交于 2019-12-11 04:25:30
问题 I would like to display only totals on my tablix, is it possible, when I tried to delete last detail column, SSRS doesn't allow me (Need at least one column in body).. This is my sample input, year is fixed, limited to 2 years (let say 2012,2013), no need dynamics here. This is demographics type data, person with dimensions (Region, Language, Age, Sex). I will need to build similar report for all of dimensions, data will have like million rows, I'm thinking to make all aggregation inside ssrs

Lost ability to be admin on SQL Server Reporting Services 2005

谁说胖子不能爱 提交于 2019-12-11 04:23:27
问题 I used to be able to go to http://myserver/reports and after I supplied my local account information (which was a member of "Administrators"), I would get the "Home" page of SQL Server Reporting Services along with the "Site Settings" link at the top right. Now, when I log in, that's gone and it seems I'm just a "regular user" because the "Site Settings" menu is no longer there. Neither is the "Properties" tab, nor the "New Data Source", "Upload File", etc... How can I get that functionality

How to keep table footer together with details? Reportig Services (RDLC)

时间秒杀一切 提交于 2019-12-11 04:04:59
问题 I'm using Tablix control to display data. Have also tablix footer for some summaries. Works well except one scenario: when last tablix row is printed as last on page then (summary) footer is moved to another page . So it looks like row-1 row-2 .... row-20 << end-of-page >> summary_row (footer) This looks pretty bad what I would like to archive is: row-1 row-2 .... << end-of-page >> row-19 row-20 summary_row (footer) Basically would like to have (at least) one row together with summary on next

Draw Line chart on top of Bar chart in SSRS?

你离开我真会死。 提交于 2019-12-11 04:01:18
问题 I am using SSRS (SQL 2008). I am having 2 Axis. One chart is line and the other is Bar chart. But when I preview it , the line chart gets hidden behind bar chart as shown in the pic. How do I bring Line chart on top of bar chart? 回答1: I was able to replicate something similar - it seems like this is determined by the order of the Chart Series in the chart designer. I have a simple chart showing the same issue as yours: Here, the first Chart Series is the line element and the second is the bar

SSRS 401.3 error access denied due to Access Control Lists

时光总嘲笑我的痴心妄想 提交于 2019-12-11 03:58:20
问题 After uninstalling an Oracle 10 client / security patch (don't know what triggerd it) I'm having trouble with users accessing our SSRS test server. First thing that happened was that the SQL service and SSRS service refused to start under NT AUTHORITY\SYSTEM. When I changed that to local service both started... I (as a domain admin) can access our reports but users (who are both browser / content manager on site settings & folder settings get: Description: An error occurred while accessing

Default path for MSDN Reports Services /ReportServer and /Reports virtual directories

我怕爱的太早我们不能终老 提交于 2019-12-11 03:56:52
问题 I'm trying to use MSDN Reports Services 2005, but I'm realising that I broke the installation, so I'm trying to fix it without having to rebuild it entirely. (Though I'm becoming more tempted the longer this goes on.) Unfortunately, all the documentation assumes you haven't done something stupid. ;) Amongst the things I've broken in the process is that I've lost the IIS virtual directories that used to point to the server and reports directories (/ReportServer, /Reports), and I can't remember

Sorting by year and monthname

青春壹個敷衍的年華 提交于 2019-12-11 03:56:30
问题 I am building a report using Report Builder 3.0. I am grouping by Month, but the Month field in my cube is in the format "2013 November". It looks good, but it sorts alphabetically instead of in calendar order. During my searching I found this page http://timyocum.blogspot.co.nz/2012/02/sorting-by-date-not-alphabetically-by.html It has the right idea, but it doesn't work for the format of my data. Can anyone help me figure this out? Thanks David 回答1: Sort by an expression: =CDate(Fields!Month

How to dynamically increase the page Header height in SSRS 2008

那年仲夏 提交于 2019-12-11 03:46:44
问题 I need to increase the height of the page header dynamically. There is a parameter to increase or decrease the size of the page header. ie, By default or If Parameter value is "Yes" then increase the size of the header to 1.5 inch. If param value is "No" then decrease height to 0.5 inches. I tried many approaches like, Inserting textbox into page header and through line break increasing and decreasing the height. But, when exported to pdf, the changes in height is not showing correctly. Any