ssrs-2012

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

Report Services sort column chart

老子叫甜甜 提交于 2019-12-13 05:58:24
问题 I have a report containing a regular column chart that groups on product (column A) and the chart column values are the sums of the cost (column B). By default these are sorted alphabetically on the product string. I want it to sort the column values by default and then I would like to provide and option for the user to be able to switch between product name and column value. How do I do this? Thanks 回答1: You can use a Sort By report parameter of Text type. Set the Available Values and

Is there a way to get list of all column values from multiple datasets

↘锁芯ラ 提交于 2019-12-13 04:12:36
问题 We have 2 datasets. Both datasets have a column called Office. Say Dataset1 Office column has values London, Liverpool and Dataset2 the Office column has values Washington, California. Is there any way in SSRS to do something like UNION ALL (but within SSRS) that is produce a list of all Office values in one table column? 回答1: There may be much more elegant ways of doing this but this is all I could come up with.. You need to have a unique numeric id for each record Assuming you cannot simply

SSRS Report Header

心不动则不痛 提交于 2019-12-13 03:47:23
问题 I am using the following expression to only display some text in my report header only for the first page of the report =IIF(Globals!ExecutionTime = 1, "My Text Here", Nothing) But this means on all the subsequent pages at the top of the report there is just some empty space where the text should be, see below 1st page: --------------------------------------------------------------- My Text Here --------------------------------------------------------------- Rest of the report Subsequent

How to refresh data in SSRS report accessed via ReportServer URL

牧云@^-^@ 提交于 2019-12-13 02:49:01
问题 I have a SSRS report that is accessed by users via the Web Service URL, we do this so we can pass in parameters. e.g. https://myserver.fqdn/ReportServer?/MyFolder/MyReport&rc:Toolbar=False&MyParameter=MyString This works well the first time the report is accessed, but no amount of refreshing the browser will cause the data to refresh. I found I could fix this behavior by adding rs:ClearSession=True to the URL. https://myserver.fqdn/ReportServer?/MyFolder/MyReport&rs:ClearSession=True&rc

Why aren't my charts in SSRS 2012 displaying?

随声附和 提交于 2019-12-12 15:11:54
问题 I recently moved several reports over to a new server. Everything works fine displaying tables and data, but charts are not displaying properly. It looks like the image is not rendering properly. My initial thought was that this was a permissions issue, specifically that the service account used to run SSRS needed permissions to a certain folder on the server that is used to generated chart images, but I can not find anything about this in searching for a solution. This happens with old

SSRS Tablix Cell Calculation based on RowGroup Value

偶尔善良 提交于 2019-12-12 06:16:55
问题 I have looked through several of the posts on SSRS tablix expressions and I can't find the answer to my particular issue. I have a dashboard I am creating that contains summary data for various managers. They are entering monthly summary data into a single table structured like this: Create TABLE OperationMetrics AS Date date Plant char(10) Sales float ReturnedProduct float The data could use some grouping so I created a table for referencing which report group these metrics go into looks

Subscribing to a report with different default parameters

自古美人都是妖i 提交于 2019-12-12 06:13:50
问题 I have created a report in VS2013. I have also created a Stored procedure that returns a dataset that works out Last_week_start, Last_week_finish, Last_month_start, Last_month_finish etc. I have done this so users can subscribe to these reports and get them emailed to them on a Monday for the weekly and on the 1st on the month for the monthly reports. Do I have to create separate reports for the weekly and monthly reports with different default parameters? ie Audit Report (weekly) and Audit

Changes to custom assembly in SSRS are ignored

拜拜、爱过 提交于 2019-12-12 05:54:39
问题 I have custom assembly which serves only 1 purpose - it contains localization strings along with static method to read them. Assembly is successfully installed on server (SSRS's bin folder) and I have created function mapping static method to custom code - it all works. By works, I mean I can use this assembly to read strings, when I create localized version - it switches locale, etc... However if I change or add any text to assembly - deploy it and make sure right DLL file is deployed SSRS

SSRS Grouping and repeat in 3 columns

混江龙づ霸主 提交于 2019-12-12 04:38:23
问题 I am new to SSRS report. I'm trying do make a report like the following snapshot. I'd like to represent the grouping data in 3x3 format. I've already making the red rectangle one, but I've tried some ways to make it shows as 3x3 in one page, but still in vain. I was wondering if anyone can give some suggestions? Thanks. 回答1: If you are sure that each time, you know 3x3 columns and rows , why don't you just replicate the columns and tablix ? For example, instead of 5 columns , use 15 columns