ssrs-2008

Hide row (and remove whitespace placeholder) of tablix in Reporting Services 2008

孤街浪徒 提交于 2019-12-03 06:38:40
问题 I have a row in a tablex that I want to hide based on a condition. I can do this with the visibility property and also using CanShrink as well is an option. I've tried both of these and the best I can do is hide the row (make it invisible), but it keeps the whitespace it takes up - I need to remove the whitespace too so if it is not shown that it doesn't take up paper/viewing space. I have also made the height of the row very small and put cangrow=true so that that if i populate the field

how to open ssrs report from asp web page using report viewer

雨燕双飞 提交于 2019-12-03 06:25:41
I'm trying to open an ssrs report on my web pages using ReportViewer. For the Report Serverl URL I have: http://db_servers/ReportsServer_SENSORSQLSERVER and for my report path I have: http://db_servers/ReportsServer_SENSORSQLSERVER/Pages/ReportViewer.aspx?%2fCustomer1&rs:Command=Render. I have looked through many sites and tutorial on how to add URL but I still get an error saying: The length of my link must be below 260 characters long. (rsInvalidItemPath). I also want to mention that my report server is in Native mode. My report server is located in another computer so I made sure the

rdlc report in vs2010, how do i repeat column header on every page?

匆匆过客 提交于 2019-12-03 05:39:16
问题 How do I repeat column header (captions) in RDLC reports? It says here http://msdn.microsoft.com/EN-US/library/735D1EE7-3C89-46D8-A346-504DB10F33E1.aspx#TableNoGroups: To repeat or freeze column headings for the tablix member, select the static row that is labeled (Static). The properties pane displays the properties for the selected tablix member. By setting properties for this tablix member, you can control how the first row repeats or stays in view. However I've tried turning

Reporting Services Chart - Custom Axis Label

若如初见. 提交于 2019-12-03 05:02:11
I have a SQL Server Reporting Services (2008) chart (error chart). The X-axis has date intervals 1/1/2009, 2/1/2009, etc. The Y-axis has numeric intervals of 50. Values on the Y-axis are 0, 50 and 100. However, instead of displaying 0, 50 and 100 i would like to display "Small","Medium" and "Large" respectively. Does anyone know how this text replacement can be performed? This is a bit of a hack, but here goes: First, normalize your values around zero, so the smallest value is -50 and the largest value is 50. You can do this in the chart control itself, no need to change your dataset. Your

SSRS 2008: error message saying my parameter doesn't exist but it clearly does?

江枫思渺然 提交于 2019-12-03 04:22:41
I have a report that has about 10 parameters and about 10 datasets and one datasource. I typed alot but I really need help so I figured I would try and provide as much info about the problem as I could right from the start. Let's simplify it all and pretend these are the relevant names of everything and that the report gets basic employee information: Parameters facilityID: text in the format of a guid or uniqueidentifier, this is hidden and passed in so that the end user of the report can only view info for their own facility; Single valued parameter, not blank not null, hidden, text

Consume web api in SSRS with parameter

◇◆丶佛笑我妖孽 提交于 2019-12-03 00:41:38
I am trying to consume webapi in ssrs ( XML source ). If will use parameter in the url (for testing purpose ) then its working really fine for example - http://some_xyz_url.com/Api/Report/GetReport?id=7 . so I can consume web api in SSRS Real problem - I do not know how I can pass parameter to webapi from SSRS. I tried hard but no luck. Also I have searched stackoverflow there is no question near to my requirement. I am using VS2012, (.net framework 4.0), SQL server 2008 (using Microsoft SQL server report builder) Any help really appreciated. I have upload the error message when I will try to

Inserting a Page break into an SSRS report

白昼怎懂夜的黑 提交于 2019-12-02 21:41:42
I have a report in SSRS that contains 12 subreports. After each subreport, I need to insert a page break so that each subreport starts on a new page and doesn't share pages with the other subreports. Does anyone know how to do this? Thanks I found an answer. Use a Rectangle at the bottom of each SubReport after all Tablixes and other rendering Objects. Then set its "PageBreak" property to "End". When the SubReport is finished with the Tablix and/or other data objects, the Rectangle forces a page break. Also, a cool feature, if the SubReport returns no rows of data, the page break is not

Role assignments in SSRS

对着背影说爱祢 提交于 2019-12-02 20:49:23
问题 I have created a SSRS report. In the report viewer I saw 2 security sections site settings folder settings. What is the difference between these two? I have to give access to 2 types of users Somebody having permission just only for viewing report. Somebody having permissions to view reports, upload report and also modify the datasource and parameter properties in the report. What should be the security roles I should select for adding these users? 回答1: First add the user : Goto : 1)

British date format on Reporting server turns to US format on client side via MS SSRS

霸气de小男生 提交于 2019-12-02 18:09:42
问题 I have problem retrieving correct date format on client side using MS reporting service 2010. The British date format (18/05/2011) of date type is assigned to the default value of a parameter in a rdl file hosted on the reproting server. However, when the date value becomes US format (5/18/2011) via reporting service 2010. ReportingService2010 reportingService = new ReportingService2010(); reportingService.Credentials = CredentialCache.DefaultCredentials; ItemParameter[] parameters =

How to check if a value is selected in a multi-value parameter

好久不见. 提交于 2019-12-02 17:32:41
In SSRS 2008, I use Multi-value parameters to, well, select multiple values for a particular parameter. In my report I have conditional formatting: a particular label has to be blue if the item is selected; otherwise it will stay black. My intuition was trying it the SQL way - but I was wrong :-) Switch( Fields!groupType.Value = "firstValue", "#00ffffff", Fields!groepType.Value = "secondValue", "Tomato", Fields!groepType.Value = "thirdValue", "DimGray", Fields!groepType.Value IN Parameters!p_myMultipleValueParameter.Values, "Blue" ) What is the right way to handle this? I think the cleanest