reporting-services

How to apply filter at report side in ssrs 2008 R2

对着背影说爱祢 提交于 2019-12-24 08:28:05
问题 I have a expression inside a tablix for one of my report column Cases Shipped like this =IIF(Fields!Current_Product.Value= "Match"," ",Sum(Fields!Cases_Shipped.Value)) This add the cases shipped value of same ditributor item code. After this statement i want to apply a filter on this column on the report .there is a textbox parameter in which a user enter the number like 10 and the column on report get filtered through this value. How can i do this?? 回答1: Sounds like you are looking to change

Dynamic subreport in SSRS 2008

我怕爱的太早我们不能终老 提交于 2019-12-24 08:25:10
问题 I would like to set up a dashboard report in SSRS that contains a bunch of sub reports, but have the reports that are displayed be configurable at run time. I.E. there could be 4 parameters which represent the names of 4 reports. The report contains 4 reports, and the name of each sub report should be taken from one of the parameters. It looks like I can't do this, as the 'Use this report as a subreport' property is a dropdown and doesn't provide a way of configuring it as an expression. Am I

Change date&time format in date picker SSRS

怎甘沉沦 提交于 2019-12-24 08:09:14
问题 how i can change format in date and time picker for Reporting services. Currently is always in format dd/MM/yyyy, system date&time format is the same. I want to change date to be in format MM/dd/yyyy 回答1: In your designer, the date format is determined by the culture of the operating system. Once deployed, the date format is determined by language of the browser. 回答2: Necromancing. Yes, you can actually do that - sort of. First, notice that SSRS takes the date format from the language that is

SQL How to get 0 values

蓝咒 提交于 2019-12-24 07:57:42
问题 I'm generating the graph below (RS2008R2) using this SQL: SELECT Merchant.Name as MerchantName, CONVERT(char(8), VoucherRedemption.RedeemedAtUTC, 112) as ShortDateRedeemed, COUNT(CONVERT(char(8), VoucherRedemption.RedeemedAtUTC, 112)) as NumberRemeemedOnDay FROM Merchant INNER JOIN Terminal ON Merchant.MerchantUID = Terminal.MerchantUID INNER JOIN VoucherRedemption ON Terminal.TerminalUID = VoucherRedemption.TerminalUID WHERE Merchant.Name = 'Merchant 1' GROUP BY merchant.Name, CONVERT(char(8

Can't see the Site Settings option for SSRS 2012

懵懂的女人 提交于 2019-12-24 07:46:24
问题 I don't seem to have the Site settings option on my SSRS instance. I have looked at numerous online suggestions including: http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/bc47050a-a733-4a27-a55a-64159453d83e When I try to access the report server url using IE as Run As Administrator, I get a login box everytime. From reading numerous articles it sounds like I need to the System Administrator in SSRS to view the option but have no idea how to add a user to this system

Formatting an SSRS report to not look terrible in Firefox

那年仲夏 提交于 2019-12-24 07:35:36
问题 I've got an SSRS report that I'm dynamically writing to an HTML page. The report looks great in IE, but it keeps none of its formatting in Firefox. I've done a bit of research on this, and found that I can insert rectangles inside of all of my matrix data fields, which will keep the formatting. This seems to me like a lot of work for something that I'm sure someone has solved more elegantly before. I've also tried messing with the CanGrow and CanShrink properties of the matrix. No help.

Is there a way to add a blank row to an SSRS dataset based on parameter?

泄露秘密 提交于 2019-12-24 07:34:50
问题 I have an SSRS report that prints address labels, 30 to a page, in 3 columns. I've created the report similar to the instructions found here Rarely do I have to print exactly 30 labels. So, to conserve paper and money, I would like to add a parameter to this report with numbers 1-30 to decide which location on the page to begin printing. If I had already printed 16 labels on a page, I could then select 17 in the parameter and my results would begin printing in the 17th label on the page. If I

Line Chart Report with 2 Different Scales?

核能气质少年 提交于 2019-12-24 07:28:21
问题 I have a line chart with two lines in it. Sometimes the values between them differ by a hundred or more. That leaves the bottom line looking very flat. I want both of these to remain on the same graph but is there a way to have a different scale for each line? I was told that it is possible to have one (scale) on the left and one on the right, but I have googled and googled and have not found anything useful. So any help would be great, thanks! 回答1: In the properties for the chart series

SSRS Report Populate same table field values in different columns in Orderly Manner

懵懂的女人 提交于 2019-12-24 07:25:37
问题 I need to fill bank deposit slip, deposit slip in the format of 3 columns for Amount I want to fill the amount column by column in an orderly manner But in the table field is the only Amount 回答1: You can specify the row and column that each amount should be in using RowNumber functions inside a matrix. Insert a matrix into the report. Set the columns to be grouped by: =(RowNumber(Nothing) +1) Mod 3 Set the rows to be grouped by: =Ceiling(RowNumber(Nothing) / 3) Here's an example of how the

Oracle parameter and IN clause in SSRS(RDL) reports

北战南征 提交于 2019-12-24 07:11:12
问题 Before marked as duplicate, I have read the following: Oracle "IN clause" from parameter Parameterize an SQL IN clause problem using Oracle parameters in SELECT IN Supposed I have this query on my DataSource in my .rdl report published in our report server: SELECT ... FROM ... WHERE c.cluster_cd IN (:paramClusterCD) Report Builder 2.0 automatically recognized a parameter as @paramClusterCD . On my wpf project, I have to create a parameter with multiple values like this: var arrCluster =