reporting-services

For SSRS in Visual Studio 2008, how can I make a variable accept multiple values as well as a single value?

穿精又带淫゛_ 提交于 2019-12-11 02:21:34
问题 I'm making a report with Visual Studio 2008, pulling the info from a table in a database. Let's say I just want to show the Type of employee (which is represented by an int , say 1-10) and their Name . Then my dataset would be this query: SELECT Type, Name FROM Employees WHERE Type = @Type This is SSRS, so I do not need to declare or set the variable (correct me if I'm wrong). When I run the report, it will give me an option to type in an int for the Type and it will create the corresponding

Multiple Y values for a single X in SSRS line\scatter chart

ⅰ亾dé卋堺 提交于 2019-12-11 01:59:59
问题 I've looked online but didn't find the answer I needed. In SSRS 2008 I have a data set that returns results similiar to this: Category Value -------- ----- 18 35 18 42 26 45 30 50 30 42 40 50 As you can see, a single category (or X axis) value (such as 18) may have multiple series (or Y axis) values (for 18 those values are 35 and 42). When trying to plot this in a SSRS-2008 report chart, I am only able to display a single Y value for each X - max,min,average,first etc. What I do need is to

change color depending on value SSRS

寵の児 提交于 2019-12-11 01:56:02
问题 I try to change the value color of my report. Green if the value is greater than 85 Red if the value is less than 70 yellow if the value is greater than 70 I tried it with the Switch statement: =SWITCH(Fields!System.Value < 70, "Red", Fields!System.Value > 70, "Yellow", Fields!System.Value >= 85, "Green") But it shows not the changing of color but it shows me this here: how can I change the color of the values? 回答1: You defined an expression for the value of the TextBox, which isn't what you

SSRS 2008: Create URL link to pdf file on file server for each cell in report table

左心房为你撑大大i 提交于 2019-12-11 01:54:55
问题 I'm working on an SSRS 2008 r2 Report, I have a table and one of the columns contains item numbers. We have pdf files located on our file server who's file name matches these item numbers and I need to create a link for each cell in the item numbers column to the correct pdf file. I can access the pdf files on our file server in two ways. S:\Production\Drawings\pdf file \server_name\drive_name\Production\Drawings\pdf file The file names for the pdf files is item_number .pdf and in my SSRS

SSRS - Space / Margin between header and tablix in content area on subsequent page

回眸只為那壹抹淺笑 提交于 2019-12-11 01:44:28
问题 Okay, I know that the question is hard to digest. So I hope this attached picture will make more sense of my question. Basically I want to maintain some space between my header and my tablix after first page. I use bottom border for my header and user don't want to see the table and the header just glued together. tried to put empty textbox (hidden) but not really working as I can't repeat the textbox on subsequent page. 回答1: It looks as though you have a gap between the top of the Report

Qlikview and Qliksense VS MSBI

橙三吉。 提交于 2019-12-11 01:38:47
问题 This question can be seen as very stupid, but i'm actually strugling to make it clear into my head. I have some academic experience with SSIS, SSAS and SSRS. In simple terms: SSIS - Integration of data from a data source to a data destination; SSAS - Building a cube of data, which allows to analize and discover the data. SSRS - Allows the data source to create dashboards with charts, etc... Now, doing a comparison with Qlikview and Qliksense... Can the Qlik products do exactly the same as

SSRS adding a footer row to a table - CSV output

假装没事ソ 提交于 2019-12-11 01:31:16
问题 I have a simple table in SSRS which I am using to create a CSV report. The output looks like: a,b,c 1,2,3 4,5,6 where a,b,c are the column headers. Now my client requires a footer row saying how many records are in the file. However if I add a row to my table with the required fields in, the output becomes: a,b,c,records 1,2,3,2 4,5,6,2 instead of: a,b,c 1,2,3 4,5,6 records,2 Does anyone know how I can achieve the desired effect? 回答1: In SSRS 2005, the table control has, by default, three

SSRS Report is throwing runtime error from Report Manager

ぃ、小莉子 提交于 2019-12-11 01:13:28
问题 When i am running few reports that have 3+ parameters having many values (>1000) then sometime the report is throwing the runtime error as described below; ** Webpage error details User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; InfoPath.2; MS-RTC LM 8; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E) Timestamp: Wed, 8 Feb 2012 14:34:12 UTC Message: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred

SSRS 2005 Number formatting int and double within one field

若如初见. 提交于 2019-12-11 01:11:37
问题 I am using SSRS 2005 . The issue is I would like to place, in numbers so if number is 23455 it should be displayed as 23,455 I know how to do this I have two data types in this field int and double. What I did to accommodate it is changed the numbers to strings but if I extract them to Excel they show green triangle. To eliminate green triangle in Excel I used CDEC() function which converts the string to number by doing this I loose , in the numbers. I was wondering if it is even possible to

Load SSRS Report from file in C# in a service

人走茶凉 提交于 2019-12-11 01:08:56
问题 We are looking into replacing Crystal with SSRS. I would like to know if it is at all possible to load the .rdl or .rdl.data file in C# and generate the report to a memory stream. I have seen some examples using the LocalReport, but this seems to be part of either the WinForms or WebForms assemblies. So what I would like to know is: Is it possible to load the report from file as part of our service. Can we then generate the report to a Stream (lets say a memory stream) Can I do this without