ssrs-2008

LookupSet based on two fields combined instead of one

谁说胖子不能爱 提交于 2019-12-10 21:35:12
问题 I have two datasets: Dataset1 (primary) and Dataset2. My report dataset is Dataset1. I want to access Gross premium Amount from Dataset2 and put it in the report. The report is working just fine if the parameter for "market name" is a single value parameter . When I set the parameter properties to "Allow Multiple Values", my report is displaying wrong Totals for "Production" Field. The problem is because the lookupset function is based on Currency_Type. What I should do is search for each

SSRS 2008 Column Visibility Expression Evaluates to true, column not visible

两盒软妹~` 提交于 2019-12-10 21:31:44
问题 This is not working and it is driving me nuts. I have in the column visibility the following expression: =IIF(CInt(Fields!SomeField.Value) > 0,True,False) The value of "SomeField" is 1. I am able to verify this by looking both at the dataset, and another column I added to the report just to see what the IIF is evaluating to. It evaluates to True. Shouldn't this make the column show? 回答1: I have just tried the following =IIF(Fields!MyID.Value > 0, True, False) in Report Builder and it works

Failing to regenerate report: ReportProcessingException on rendering extension

笑着哭i 提交于 2019-12-10 20:47:08
问题 I can generate a report in SSRS 2008 but when I try to generate it again it will fail with exception below. It will however work again once after SSRS is restarted. What configuration option could be affecting this? (I have added all necessary extensions.) processing!ReportServer_0-1!1ef4!01/28/2013-16:39:41:: ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: You have attempted to use a rendering extension that is either not registered for this report

SSRS where install the font?

强颜欢笑 提交于 2019-12-10 20:02:16
问题 Simple question that I can not found a simple answer. I am using a Reporting Server to generate my reports, and the reports use a custom font My question is I need to install the custom font on all machines that will run the report or only on the server? The company uses SSRS 2008 回答1: Only Installing the font on the reporting server and then enabling the font embedding should do the magic. For font embedding, see this link: Exporting to a PDF File and Font Embedding. 来源: https:/

IsNothing not working on empty value in report builder

為{幸葍}努か 提交于 2019-12-10 19:59:40
问题 I have an expression in a table that checks if there was a return value. If the query returns empty or null I want to set the value to 0 . =IIF(IsNothing(Fields!DndCount.Value),0,Fields!DndCount.Value) But if the query returns empty IsNothing() does not work. 回答1: I have tried this code and it worked for me. IIF(Sum(Fields!DndCount.Value)Is Nothing, "0", Sum(Fields!DndCount.Value)) 回答2: Alternative solution to avoid using expressions, change the cell format to #,##0 in properties. Easier then

SSRS vs Crystal Reports [closed]

此生再无相见时 提交于 2019-12-10 19:58:00
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 7 years ago . Please, can anyone tell me what are the main differences between SSRS 2005 & Crystal Reports? 回答1: the main differences are: SSRS is

SSRS combine multiple datasets into one graph

拥有回忆 提交于 2019-12-10 19:47:01
问题 I've been looking around online for a way to fully combine datasets in SSRS (2008 R2). Basically, I need to create a single table and graph composed of a number of different datasets (all with the same columns as below) which are retrieved from multiple sql servers (preventing me from combining them in a single query) Can the datasets be combined into a single dataset or table from which I can produce a single graph (this is the requirement I was given) as shown below? Thanks in advance.

Creating SSRS report when data is in SharePoint server

回眸只為那壹抹淺笑 提交于 2019-12-10 18:20:38
问题 I have some records in SharePoint server. I have to create some reports using SSRS. I am little bit confuse that I used SharePoint list for creating reports or I used separate database for creating SSRS report. Please let me know which one is best way for creating SSRS report, using SharePoint list or using separate SQL Server database. Thanks. 回答1: If you're dealing with relatively small datasets, it's probably fine to get data from SharePoint lists but this is not supported directly until

SSRS: Custom bar width between multi-level categories

落爺英雄遲暮 提交于 2019-12-10 16:58:29
问题 I have a bar chart with multiple category groups and I need to increase the spacing between the first level category group, that is, where the blue arrow points to. I want to change this: Into this: Thanks in advance. 回答1: As far as I know, there is no way to adjust the spacing between self-imposed groups of bars. However, there is a trick to get the desired affect. All you have to do is trick SSRS. In your query, you'll need to create empty bars with no labels. Without knowing how your query

Report Builder: Can I link to a specific part of a report?

自作多情 提交于 2019-12-10 16:37:49
问题 I would like to link to a specific section of a report from another report. A quick search on the internet didn't give me any suggestions, so I thought I would ask you smart folks here ;-). I'm really looking for something like anchors in HTML but for a report. 回答1: If you know already the page of the report you want to jump, then instead of the action "Go to report" I think you should use "Go to URL" and in the expression field insert something like: "http://myrsserver/reportserver?http:/