ssrs-2008

Add the columns automatically in SSRS report

泄露秘密 提交于 2019-12-18 09:12:20
问题 Currently we are having 6 columns in our database table which we are showing in the SSRS report but in future if we add 1 more column then without any manual changes on RDL it will included in the report. Current report Example :- Name Address Code City County Country xyz Lane 1 466001 Bang dbc Africa abc Lane 2 466002 Bpl bbn Nepal dcb Lane 3 466003 sbc wad Bhutan Expected report without adding the column manually in SSRS. Name Address Code City County Country DOB xyz Lane 1 466001 Bang dbc

SSRS: How to add All option to SSRS dropdown filter?

别说谁变了你拦得住时间么 提交于 2019-12-18 08:50:44
问题 I'm using SQL Server Reporting Services for SQL 2008 R2. My reports are filtered by two drop-down menus that are populated from a table, one of them displays a build number. I'd like to give users the option to choose "All" and so return data for all build numbers and not just one. How do I add this option to my drop-down filter and make it work correctly? Thanks very much for any help provided. J. 回答1: I'm assuming you don't want to use a multi-value parameter here, you only want users to

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

Displaying the value of a textbox in other parts of a report

不想你离开。 提交于 2019-12-18 06:55:23
问题 In a report table there is this formula to calculate a subtotal for an invoice. This is the formula: =Sum(Fields!LineTotal.Value) The textbox is called TextBoxSubTotal. I would like to display this in another part of the report such as in the header area where I display that subtotal, tax, shipping charge and also a total due. Can you tell me how to display this value in TextBoxSubTotal in other parts of the report? 回答1: Have you tried creating a report variable? Create a new variable and put

How to make a column invisible in an ssrs matrix

别来无恙 提交于 2019-12-18 06:16:33
问题 I have an ssrs matrix , the design of which looks like this : The sql query used in the above dataset looks like this : select [YEAR], [MONTH] as MONT , ProductName, NumberofSales from XYZ ; When the report is run , My output looks like this : Here , the Column Names 9 , 10 correspond to the months 9 - September and 10 - October. Change shows the difference in numbers between the month and the previous month . example : number of sales in october - number of sales in september. I would like

SSRS - Process dies/goes to sleep after not being used

我怕爱的太早我们不能终老 提交于 2019-12-18 04:11:56
问题 Another SSRS question here: We have a development, a QA, a Prod-Backup and a Production SSRS set of servers. On our production and prod-backup, SSRS will go to sleep if not used for a period of time. This does not occur on our development or QA server. In the corporate environment we're in, we don't have physical (or even remote login) access to these machines, and have to work with a team of remote administrators to configure our SSRS application. We have asked that they fix, if possible,

SSRS - Process dies/goes to sleep after not being used

不问归期 提交于 2019-12-18 04:10:02
问题 Another SSRS question here: We have a development, a QA, a Prod-Backup and a Production SSRS set of servers. On our production and prod-backup, SSRS will go to sleep if not used for a period of time. This does not occur on our development or QA server. In the corporate environment we're in, we don't have physical (or even remote login) access to these machines, and have to work with a team of remote administrators to configure our SSRS application. We have asked that they fix, if possible,

Display Seconds Count in HH:MM:SS format in SSRS 2008

泄露秘密 提交于 2019-12-18 03:37:48
问题 I have a table with a column, TotalTime that is an Integer value in seconds. In Visual Studio / SSRS 2008 I want to display it in HH:MM:SS format. Thanks! 回答1: Just use an expression that adds that number of seconds to a zero time value =Format(DateAdd("s", Fields!TotalTime.Value, "00:00:00"), "HH:mm:ss") If it is larger than 24 hours, then you can use the following formula that adds the days portion: =IIF(Fields!TotalTime.Value < 86400, Format(DateAdd("s", Fields!TotalTime.Value, "00:00:00")

In SSRS, why do I get the error “item with same key has already been added” , when I'm making a new report?

眉间皱痕 提交于 2019-12-18 03:00:22
问题 I'm getting the following error in SSRS , and it's been puzzling me a while now: An error occurred while the query design method was being saved. An item with the same key has already been added What does an "item" denote, though? I even tried editing the RDL and deleting all references to the Stored Procedure I need to use called prc_RPT_Select_BI_Completes_Data_View . Could this possibly have to do with the fact that the Stored Procedure uses Dynamic SQL (the N' notation)? By the mornin, in

Need help in calculation using two Datasets using Expression SSRS

只愿长相守 提交于 2019-12-17 20:56:20
问题 I am creating an SSRS report where In Dataset15, I have value Jan - 100 & Feb - 110 in Dataset16, I have value Jan - 80 & Feb - 100 Now I want to calculate same thing in a line chart using expression - Jan - 80/100 which should be 80% & Feb - 100/110 - 91% When I am trying to find out individual monthly number 100, 110 I am getting 210 which is the summation of Both - Sum(Fields!Total.Value, "DataSet15") . Kindly help me out how can I get individual Numbers. 回答1: You would need to restrict