reporting-services

Conditional background color in line charts

半腔热情 提交于 2019-12-04 01:28:26
问题 I am currently trying to convert our charts over from PQ Systems Chartrunner to SSRS 2008 charts. I am currently working with a line chart in SSRS 2008 and am trying to get the background color to change for the different sigmas. I am able to calculate and chart the standard deviation sigma lines, but I have not been able to change the color of the background between the lines. What I have so far in SSRS: In the Chartrunner chart, the Red/Yellow/Green zones: Is there a way to do this in SSRS

RowNumber for group in SSRS 2005

三世轮回 提交于 2019-12-04 01:22:32
I have a table in a SSRS report that is displaying only a group, not the table details. I want to find out the row number for the items that are being displayed so that I can use color banding. I tried using "Rowcount(Nothing)", but instead I get the row number of the detail table. My underlying data is something like ROwId Team Fan 1 Yankees John 2 Yankees Russ 3 Red Socks Mark 4 Red Socks Mary ... 8 Orioles Elliot ... 29 Dodgers Jim ... 43 Giants Harry My table showing only the groups looks like this: ROwId Team 2 Yankees 3 Red Socks 8 Orioles 29 Dodgers 43 Giants I want it to look like

Generate reports programmatically using the TFS API and SSRS

半城伤御伤魂 提交于 2019-12-04 01:18:48
问题 Is there a simple approach in generating reports, either in PDF, Excel, Word or TIFF formats using the TFS API and SSRS? I can generate the reports manually by selecting the parameters from the combo boxes using the SSRS dashboard for TFS but I would like to include an export button to my web application so that I can easily bypass Team Web Access for generating reports. Any ideas? I have read on this post that I could use the ReportExecutionService class from SSRS, so I was wondering if this

Is it possible to import existing SSRS reports in Visual Studio?

限于喜欢 提交于 2019-12-04 00:30:39
问题 When upgrading a machine, we lost the Visual Studio project that was used to create SSRS reports. The Data Sources and the Reports still exist on the server however. Is there a way to re-create the VS project using what it on the SQL server? Is there a way to create a new Reporting Services project and to import existing Data Sources and Reports in it? I believe the reports were originally created using VS 2005. 回答1: You haven't lost much. The data sources are not much: the connection string

How to filter one dataset value with another dataset Table value in SSRS

本小妞迷上赌 提交于 2019-12-04 00:26:38
How to filter one dataset table with another dataset Table value in SSRS. Dave Bauman Not sure if there is a better way to do this in SSRS 2005, but this should work: Create dataset A. This will be your filter dataset. You should return only one value column. (If you need multiple values, you'll have to join them) Create a new report parameter called ParameterA. Set both the available values and the default values to the value column result from the dataset A. Set the parameter to Hidden (I think Internal might be a better choice..try it out) Create a second dataset B. Add ParameterA as a

Pass NULL to SSRS URL access parameter?

只谈情不闲聊 提交于 2019-12-03 23:18:56
How does one specify a NULL value when passing a parameter to an SSRS report using URL access? i.e. when using the form http://server/ReportServer/Pages/ReportViewer.aspx?Report&Parameter=value Ed Harper Use the syntax Parameter:IsNull=True In the example given above: http://server/ReportServer/Pages/ReportViewer.aspx?Report&Parameter:IsNull=True Reference: http://msdn.microsoft.com/en-us/library/ms155391(loband).aspx 来源: https://stackoverflow.com/questions/1433477/pass-null-to-ssrs-url-access-parameter

ssrs setting column visibility on rowgroup

那年仲夏 提交于 2019-12-03 22:49:10
I'm trying to hide a column but it belongs in the RowGroups area. Unfortunately, the Column Visibility is greyed out and disabled. I'd like to just hide the column under certain conditions (using expressions) but keep the grouping. I found a similar question on SO but its solution did not work for me. Is there a workaround for this? ssrs column visibility inside row groups I've tried shifting some of the columns to the body area of the tablix, but then I can't merge cells vertically. I'm not sure what my options are. In the image below, I'm trying to hide the first column but the Column

Execute .exe in SSRS Report

对着背影说爱祢 提交于 2019-12-03 22:45:54
i want to execute a .exe in a SSRS Report from Microsoft Dynamics AX . I tried so far to realize that over Custom Code and a Textfield with following Expression: =Code.StartProcess("test") Public Function StartProcess(ByVal s As String) As String Dim pHelp As New ProcessStartInfo pHelp.FileName = "test.bat" pHelp.Arguments = s pHelp.UseShellExecute = True pHelp.WindowStyle = ProcessWindowStyle.Normal Dim proc As Process = Process.Start(pHelp) Return "it works" End Function I get the error ":StartProcess is invalid. InvalidIdentifier" As second try i use this: ="javascript:void(window.open(

Populating with '0' when Data in SSRS Does not exist

北战南征 提交于 2019-12-03 22:42:19
问题 I'm trying to create a report in SSRS where I have a matrix, which has gender as the column headings and specifically defined agegroups as the rows. The report is sorted by date (ie, the records being displayed are filtered by the modifedAt value). My problem is that i wish for all of the age group categories to be displayed, even if the dataset does not return any data for that row. So, for example, if i set the date to be a date where there are no db rows where there are Age5-16 children in

Copy and paste a table (tablix) in SSRS

半世苍凉 提交于 2019-12-03 22:07:52
I have a tablix that has data for one day, and I need to have the same data at the bottom but in 3 different lines. I'd like to copy the main day table 3 times at the bottom, and then use different datasets for each one. I tried copying the tablix and pasting it into the Body beneath the tablix, but I get the following error: Report Builder was unable to paste successfully. How can I accomplish the copy and paste? Or if that isn't possible, is there another way to do what I am trying to accomplish? Here's an animated screenshot: You are likely getting the error message Report Builder was