reportbuilder3.0

Tablix: Repeat header rows on each page not working - Report Builder 3.0

只愿长相守 提交于 2019-12-28 01:38:53
问题 I have a tablix with lots of rows that span over multiple pages. I have set the Tablix property Repeat header rows on each page but this does not work. I read somewhere that this is a known bug in Report Builder 3.0. Is this true? If not, is there something else that needs to be done? 回答1: It depends on the tablix structure you are using. In a table, for example, you do not have column groups, so Reporting Services does not recognize which textboxes are the column headers and setting

Report Builder SUM IIF - More than 1 DataSet

孤街醉人 提交于 2019-12-25 08:32:20
问题 I am trying to add the following expression to a TextBox on a Report Builder report using the following code: =SUM(IIF(Fields!TaskDescription.Value,"DataSet1") = "Running", 1, 0) I have more than 1 dataset which I think is causing the issue, but the above gives me the following error message: The scope parameter must be set to a string constant that is equal to either the name of a containing group, the name of a containing data region, or the name of a dataset. What am I doing wrong? 回答1:

Adding First Values Grouped by ID from record set; report builder 3.0

故事扮演 提交于 2019-12-25 04:00:33
问题 I have a dataset being returned that has monthly values for different 'Goals.' The goals has unique ID's and the month/date values will always be the same for the goals. The difference is sometimes one goal doesn't have values for all the same months as the other goal because it might start at a later date, and i want to 'consolidate' the results and sum them together based on the 'First' startBalance for each goal. Example dataset would be; goalID monthDate startBalance 1 1/1/2014 10 1 2/1

Can “allow multiple values” for parameters be used with stored procedures in Report Builder 3.0?

送分小仙女□ 提交于 2019-12-24 17:43:38
问题 Microsoft says that you cannot allow multiple values for a parameter in Report Builder 2.0 when using stored procedures. https://technet.microsoft.com/en-us/library/Dd207127(v=SQL.100).aspx I cannot find a similar statement for Report Builder 3.0. How does report builder send the data contained in a parameter with multiple selections to a stored procedure? It seems from this post that it passes them as a string, is that right? https://www.mssqltips.com/sqlservertip/2844/working-with

SQL: Is there a way to iteratively DECLARE a variable?

限于喜欢 提交于 2019-12-24 07:46:57
问题 Is there a way to accomplish something like this in SQL: DECLARE @iter = 1 WHILE @iter<11 BEGIN DECLARE @('newdate'+@iter) DATE = [some expression that generates a value] SET @iter = @iter + 1 END At the end I would have 10 variables: @newdate1 @newdate2 @newdate3 @newdate4 @newdate5 @newdate6 @newdate7 @newdate8 @newdate9 @newdate10 Update: Based on a comment, I think I should specify why I want to do this. I am working with Report Builder 3.0. I am going to make a report where the input

How to Display Only 1 Value Label in SSRS 2012 Calculated/Derived Series?

偶尔善良 提交于 2019-12-24 06:13:53
问题 I have been using SSRS 2012 (Sql Server Reporting Services) with SQL Server Report Builder 3.0 (11.0.2100.60) to create Column charts that display columns for each day/week/month and display a trend line based on the mean across all days/weeks/months. However, although the calculated series reflects only 1 value (the mean across all days/weeks/months), value labels appear on the chart displaying the single mean value for each day/week/month - that is, 3 days will result in 3 value labels for

Is it possible for me to include a sub report in a tablix row that is grouped by an ID?

假如想象 提交于 2019-12-18 07:32:13
问题 Is it possible for me to include a sub report in a tablix row that is grouped by an ID and pass that ID into the sub-report to be ran? Basically, the sub-report would return data from a second dataset based off of the ID that is being used in the grouping of the main tablix? My main tablix has 4 rows that are grouped together by an ID where i create a few graphs from a main dataset. My second dataset returns simulations that can contain hundreds of rows per ID, which is why I don't want to do

Concatenating/Merging 2 DataSets with exact same columns [duplicate]

為{幸葍}努か 提交于 2019-12-13 06:12:54
问题 This question already has an answer here : Merge two Reporting Services datasets into one (1 answer) Closed 3 years ago . I'm trying to figure out if there is any way in Report Builder 3.0 to concatenate or merge 2 different "DataSet" objects which both have exactly the same column names into one set of data, for the purposes of displaying in a pie chart. My SQL query looks similar to this for both data sets: DECLARE @DateCreatedStart date = GETDATE()-14 DECLARE @DateCreatedEnd date = GETDATE

Hide or Display column based on group visibilty expression

こ雲淡風輕ζ 提交于 2019-12-13 00:14:35
问题 Currently working on an SSRS report in which there is a parameter "Display by Order" set to false as default. Within the body of the report, I would like to set the group expression to display the Column order if Parameter "Display by Order" is true otherwise do not display the column. I am unsure what the expression would be for this. Help would be greatly appreciated. Thanks 回答1: The Hidden expression for the Column Visibility should be something like: =Not Parameters!DisplayByOrder.Value

SSRS - Auto Refresh of the Data Set Fields

混江龙づ霸主 提交于 2019-12-12 16:27:38
问题 We have about 90 Report Builder Reports built by power users. These reports are built off the 20 odd Base reporting tables. Once in a while we add new fields to these reporting tables. The challenge here is to automatically refresh the Datasets in Report Builder (SSRS) without having to go through each report to manually refresh data on the data set. Since SSRS processes these reports with FMTONLY ON is there a way to automate this process dynamically. Thanks 回答1: So, I think you should use