reportbuilder3.0

SSRS RB3 X-Axis last 30 minutes plus graphing 0 for gaps

心不动则不痛 提交于 2019-12-12 05:54:13
问题 I'm new to report builder and having trouble overcoming what I hope is a simple problem. We have a sql table holding error codes reported by a web application. These codes are logged along with a timestamp. My goal is to plot the number of errors in a line graph for the previous 30 minutes. I've got it to work using the datetimestamp field for the x-axis, however if no errors are logged for a specific minute, it doesn't show 0. Also if there hasn't been any errors for 20 minutes, the graph

Summing Values in filtered rows only

两盒软妹~` 提交于 2019-12-12 05:01:55
问题 I have a Report Builder 3.0 report that uses a group filter tied to a parameter to display data. How do I sum these columns on only the visible rows? I need to sum Fields!PY_Dollars.Value , Fields!CY_Dollars.Value and also calculate py-cy and the % difference between the two In case 2 where PY values are zero or null, I don't need to total the py values or do the comparison rows. I'm hiding those if the Parameters!Store.Value=1 Group Filter[bool expression = TRUE]: =( (Parameters!Store.Value

SSRS Column chart, total as last column

蓝咒 提交于 2019-12-12 03:56:24
问题 I've got the following column chart: Product names as Category groups with values for budget and revenue on each column. Now I want to create a final column (Total) which is the sum of each column. ie. one column with the total value of the budget and one with the total value of the revenue. Can this be done directly in the graph without having to do the calculations in the dataset? It's very easy to add a total to a table but seems to be hard to add it to a chart. 回答1: No, you cannot just

Filter rows in SSRS based on parameter and Field

懵懂的女人 提交于 2019-12-12 02:05:08
问题 I am new to using the filters in SSRS. But I would like to filter Accessories (Yes, No). This is a parameter with a yes and no Value which would display/ filter rows based on the field Field!class.Value= "I" or "A" accordingly. So If the drop down is yes it should only display rows with class "I" otherwise All "I" and "A" How would I do this in the Taxlib filters property. It is not working for me, the way I need it to. Help would be immensely appreciated as usual! :) 回答1: Modified as per OP

Issue With Registry Key of dfshim.dll

感情迁移 提交于 2019-12-12 01:56:16
问题 I was getting error when opening ReportBuilder Application from my WPF app on a Windows Server 2012 machine with Report Builder 3.0 for Sql Server 2012. As I workfound I deleted the registry key of dfshim.dll from below location:[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\App Paths\dfshim.dll]. After this I am not getting any error and report builder is opening fine. What is the use of this registry key and what will be the impact if I delete this entry? I am not

Microsoft Report Builder does not print report correctly

一笑奈何 提交于 2019-12-11 15:47:32
问题 I build a report that is showing TOP 4 items in a table. I want to be able to print the report on a Zebra LP2844 label printer. The label is 6x4 landscape. I set the PageSize width to 6in and the Height to 4in. Each Margin is set to 0.1in. The Body width is set to 5.8in (6in-0.1in-0.1in). I run the report through the report builder and take a look at the Page Setup and Portrait is selected. So I select Landscape and confirm with OK. If I take a look again it is set back to Portrait. The Label

SSRS Report Builder 3.0 Row Grouped records count

北慕城南 提交于 2019-12-11 14:08:52
问题 Need help to display the grouped row count in report builder. I want to get the rowcount of grouped records. RowCounts("DatasetName") is giving the total rowcount of the dataset but if the dataset is grouped in reports it still gives the total row count. i want to display the grouped records count. Thanks in advance. Thanks 回答1: I use =CountRows() or =CountRows("Group_Description") instead, where "Group_Description" is whatever you've named the group. 来源: https://stackoverflow.com/questions

Set parameter back to default value in SSRS

雨燕双飞 提交于 2019-12-11 13:50:45
问题 Is there a way that a parameter value can be reset to it's default once the 'view report' button has been pressed. I have a report with a free text input parameter that inserts users comments into a sub report contained within this report. They add their notes then hit view report, this re runs the report with their notes visible. The only problem is that the parameter box still contains the note they added previously - I've set the parameter to have a default value of ' ' which works the

Sorting by year and monthname

青春壹個敷衍的年華 提交于 2019-12-11 03:56:30
问题 I am building a report using Report Builder 3.0. I am grouping by Month, but the Month field in my cube is in the format "2013 November". It looks good, but it sorts alphabetically instead of in calendar order. During my searching I found this page http://timyocum.blogspot.co.nz/2012/02/sorting-by-date-not-alphabetically-by.html It has the right idea, but it doesn't work for the format of my data. Can anyone help me figure this out? Thanks David 回答1: Sort by an expression: =CDate(Fields!Month

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