ssrs-2008-r2

SSRS 2008 R2 / 2012 Width Property Unit of Measure Default Setting

时光总嘲笑我的痴心妄想 提交于 2020-01-04 02:38:31
问题 Is there a way to configure the default unit of measure for the width / height properties used to size cells / rows? If I add a table and configure the width of the columns to a value specified in "pt" rather than "cm" I have to change them all as I specify the width (I am using pt to get over the inexplicable inability of SSRS to correctly align columns when exported to Excel). Is there a way I can change from cm to pt as the default value for all measures in a report? 回答1: Imperial or

How to hide parameter based on another parameter value in SSRS

偶尔善良 提交于 2020-01-02 11:07:26
问题 Hi I have 2 parameters param1 and param2. param1 has values true and false.my requirement is if i select true in param1 then param2 should be hidden and if i select false in param1 then param2 should be visible. can this be achieved in SSRS? 回答1: As per Nathan's comment i am adding Amar's comment here as answer/partial answer Unfortunately, you cannot change a parameter's visibility during run time. Alternatively, you can control the second parameter's values based on the selected value of

SSRS Expression will not affect chart title visibility

点点圈 提交于 2019-12-31 04:47:45
问题 I'm trying to use an expression in the visibility tab of the Chart title properties window to hide the chart title based on a Boolean parameter. parameter will hide other parts of the chart, but will not hide the chart title. I've tried using both switches, and IIF statements to verify that my code was working in other parts of the chart. I can hide the body, legend, and even the entire chart. Nothing I do will affect the chart title, however. =IIF(Parameters!Visible.Value = FALSE, FALSE,

Using CASE in WHERE Statement when parameter has multiple values

China☆狼群 提交于 2019-12-31 04:00:09
问题 I have a problem which I think relates to having a multiple value parameter. In my TblActivity there are two fields TblActivity.ActivityServActId and TblActivity.ActivityContractId which I want to include in my WHERE statement. Filtering by these is optional. If the user selects 'Yes' for the parameter @YESNOActivity , then I want to filter the query looking for rows where TblActivity.ActivityServActId matches one of the options in the parameter @ServiceActivity . The same goes for the

SSRS stacked column chart legend is Wrong after adding lookset() inside the Action

守給你的承諾、 提交于 2019-12-25 16:59:10
问题 I have Stacked column chart which is working fine. now i added the drill down added parameter Student id i have to pass this id to the next report . this is my chart below you can see that after adding the lookupSet() , legend is wrong This is My code LookupSet( Fields!Year.Value , Fields!Year.Value,Fields!StudentId.Value,"DataSet1") 回答1: By using the Lookup Data Set we can achieve this 来源: https://stackoverflow.com/questions/29430920/ssrs-stacked-column-chart-legend-is-wrong-after-adding

SSRS 2008 R2 Check if external image exists on report server

放肆的年华 提交于 2019-12-25 09:42:24
问题 I'm working on an SSRS 2008 R2 report and I'm displaying images dynamically. I would like to hide the image box and display an icon with text that reads "Image not found" if the image doesn't exist on our report server. I've tried a few things with expressions, but I can't get them to correctly return true or false, based on if the image exists or not. The expression I'm using to display the image is: ="/BusinessIntelligence/Drilldown Reports/" + Fields!item.Value + ".jpg" To test if I could

Set expression for hidden ssrs

穿精又带淫゛_ 提交于 2019-12-25 09:02:15
问题 I want to display only first 10 rows and hide remaining rows in a column. what will be the expression for this (Set expression for: Hidden) in Tablix properties -> visibility -> show or hide based on expression. My dataset name is Top50CustomerSQL; My Column name is Supplier; Expression for this scenario please? SQL Code SELECT s.[CusNo] Supplier, RTRIM(CAST(s.[Customer] AS VARCHAR(50)) ) AS Name, s.[ConcessionNo] Concession, RTRIM(CAST(s.[ConcessionName] AS VARCHAR(50)) ) AS ConcessionName,

What is the difference between Report manager URL and web service URL in ssrs 2008

家住魔仙堡 提交于 2019-12-25 07:19:12
问题 What is the difference between Report manager URL and web service URL in ssrs 2008 r2? 回答1: The Web Service URL page to configure or modify the URL used to access the report server. The Report Manager URL page to configure or modify the URL used to access Report Manager. The report server is the central component of a Reporting Services installation. It consists of a pair of core processors plus a collection of special-purpose extensions that handle authentication, data processing, rendering,

Sum Values based on Distinct Guids

混江龙づ霸主 提交于 2019-12-25 06:59:11
问题 I am having trouble getting the SUM of a column of values in SSRS. My SQL query returns something like the following: ID Total Guid1 4 Guid2 6 Guid3 1 Guid2 6 Guid4 6 Guid1 4 I have it grouped in my SSRS Report so it appears like this: ID Total Guid1 4 Guid2 6 Guid3 1 Guid4 6 I need the sum of the Total column, but it wants to sum the ungrouped set of values instead of the grouped set. So I get Sum(Total) = 27 But I WANT Sum(DISTINCT? Guid Totals) = 17 I've tried the solutions that can be

Passing Connectionstring as parameter in SSRS through URL

拜拜、爱过 提交于 2019-12-25 02:37:30
问题 I am working on an application using Classic ASP and SQL Server 2008 R2. We are using SSRS for the reports. Now the datasource changes depending on the user. I have been using a parameter for the connectionstring. It is working fine but the problem is the connectionstring shows in the URL. Is there a way to hide it? Or is there a better way. Please Help. 回答1: Yes - change the method on your form to POST and use the Request.Form syntax instead of Request.QueryString : <form id="myForm" method=