reporting-services

SSRS 2012 where and how to download

不问归期 提交于 2019-12-11 09:01:40
问题 I need SSRS for SQL Server 2012 however I cannot find it anywhere can somebody help and share links? I found one but its required Sharepoint on my machine. I need it for learning purpose that way I don't have share point. Thank you! 回答1: You need to have three different versions of SQL Server to get it. It is an add on to SQL Server. Either: SQL Server Enterprise Edition SQL Server Developer Edition SQL Server with Advanced Services (SSIS, SSAS, SSRS) The third option is free and is here I

SSRS - Matrix Table Reading Previous Row Values

北城余情 提交于 2019-12-11 08:54:27
问题 I've been trying to read the previous row value(that displays hourly quantities) on the matrix table to compare it with current row value and highlight the background color to yellow if the difference between them is out of accepted tolerance range. The matrix table has a combination of grouping on column and row(for only hourly information) that is shown on the picture. Tried to use the custom code to achieve this, but I'm getting an incorrect result . I've attached the report design image,

Dynamic merging of cells in SSRS

让人想犯罪 __ 提交于 2019-12-11 08:52:36
问题 In an SSRS Report ,I have a table which has 14 columns, 1st column is 7am and the last column is 7pm. I have 100 records with conference names and the timings, ex: international conference 9am to 5pm national conference 8 am to 11 am so the problem is these column cells must merge based on the timings and display as one textbox with center aligning the text ex: national conference the columns from 8 to 11 am are to be merged and the time 8 to 11am must display in these merged cells with

Hide a tablerow in a .NET rdlc report if the field represented in the row is empty? [duplicate]

守給你的承諾、 提交于 2019-12-11 08:46:52
问题 This question already has answers here : Closed 7 years ago . Possible Duplicate: How to collapse a row in RDLC rather than just hide it? I see the tablerow.Visibility property and another property called 'ToggleItem' but am not sure how to make this work. I want to hide the tablerow dynamically if it's only text field (in this case a user comment field) is empty. 'CanShrink' doesn't seem to do the job. The tablerow is .25 inches high and it takes up this much space even if there is no data

How to keep two rows adjacent in SSRS?

空扰寡人 提交于 2019-12-11 08:37:09
问题 I have a Tablix in my .rdlc file. I open my report file in pdf format. But some times 'OtherInfoLabel' comes to the bottom of a page and the data(OtherInfo) goes to the next page. is there any way to keep both label and Text together? 回答1: It is not possible to check the size of the tablix and decide if to break or not. What you can do is: On the General tab, under Page break options, select one of the following options: Add a page break before. Select this option when you want to add a page

Iterate over columns of a report to dynamically show/hide them?

混江龙づ霸主 提交于 2019-12-11 08:34:42
问题 I want to try and implement a parameter which will allow users to dynamically choose which columns are going to be shown in a report. An idea is to create a multiple value parameter which has column names. After user hit View Report I want to try iterate over columns and selected values to join visibility. How I can iterate over columns inside a tablix? How I can iterate over multiple values of a parameter, so I can find if some value is selected or not? I am using MS SQL Reporting Services

SSRS Show Textbox on last page separately

天大地大妈咪最大 提交于 2019-12-11 08:22:06
问题 I need to display a Textbox in the body of the report, but it has to be on a separate last page. It is actually a Word file that needs to be shown in each report, but seeing as how the only way to accomplish this is to put the file to the Report Server and then access it with a link, I decided to copy the contents of the file to a Textbox. This and this question on SE are similar, however it is not exactly what I need. 回答1: You can achieve this by adding items with appropriate page breaks to

Show time tag in SSRS Parameter

℡╲_俬逩灬. 提交于 2019-12-11 08:19:02
问题 I have an SSRS report with two parameters: StartTime and EndTime. I have default values on the parameters to be set as the current date at 12:00am and the previous day at 12:00am. However, since 12am is the default time on SSRS, it will not show in the parameter selection. What you see is, for example, '9/29/2011'. If there were to be a time other than 12:00am, you would see '9/29/2011 12:45:00.' Is it possible to get the report parameters to populate at 12am and still show the time? The

Multiple group expressions in list (ssrs 2005)

送分小仙女□ 提交于 2019-12-11 08:16:50
问题 I have a problem with group expressions in a list. I want to use two expressions: =Ceiling(RowNumber(Nothing)/3)' and '=Cint(Fields!kpilevel.Value) They work both individually, but when I insert them together only 1 works. I inserted them like this: img718.imageshack.us/img718/736/problemxq.png Does anyone know how to solve this? Thanks in advance, Kris EDIT: Better Explanation Mark you are right, I didn't explain it very well. I want to place the data in a matrix, with a maximum of three

Splitting a dynamic string

可紊 提交于 2019-12-11 08:09:03
问题 I need help parsing a dynamic string(see below). This string can change to only have one set of values to two, to three(like the one below). Raw String: valueA=valueB=valueC=valueD==valueE&valueA=valueB=valueC=valueD==valueE&valueA=valueB=valueC=valueD==valueE End Result: VelueB, ValueB, ValueB I have been able to extract valueA using the STUFF and CHARINDEX function(see below) but I'm having difficulty just getting valueB . I have also tried doing it in ssrs using the split function but