reportviewer2008

ReportViewer ASP.NET Adding spaces in a cell

I am using ReportViewer 2008, with ASP.NET and C#. I have a cell in a matrix table. I'm interested in formatting the insides of the cell so that as if there was another table in there - I'm talking about the very top left of the matrix report. However I cannot add a table - this would cause rendering issues which will prevent the cel...

Creating a standards based ReportViewer Pivot Alternative

I'm interested in recreating some of the ReportViewer functionality - possibly something via regular GridView or something similar. My two main requirements: Pivot functionality - as seen on the ReportViewer matrix Standards based design - maybe adding ids/classes on the backend based on the results Also - I will be pulling data for...

Why won't binding to a child object property with rdlc Report work in vs2010?

A while ago someone asked how to bind to a child object's property in a rdlc report. Question here. The solution was to use an expression like this: =Fields!ChildObject.Value.SomeProperty I have recently tried to upgrade to version 10 of the reporting libraries (Microsoft.ReportViewer.WebForms and Microsoft.ReportViewer.Common) and f...

Trying to calculate the Average of the non zero rows in a column in an RDLC

Is there any way to caculate the average of the non zero rows only for a column of data in a table in an RDLC for Microsoft report viewer? ie 0 0 0 5 5 = 5 not 2 I tried Count( fields.n.value > 0 ) to get the count of non zero rows, but it returned the count of all rows. Thanks! Eric- ...

Visual Studio 2010 is asking to convert RDLC created on VS2008 to RDLC 2008 format?

I've created my project on Visual Studio 2008, as well RDLC files on it. But now, when I open the solution on Visual Studio 2010 and want to open RDLC file, it's showing me a warning. That's a little funny. The report was created on VS2008 and VS2010 is asking to convert to 2008 format. Perhaps there was a problem on my VS2008 instal...

Rdlc subt report, with group, if subreport, on new page, alwasy takes last row and puts it there too

So I have an RDLC, with a group and 2 subreports there are two details lines, for each "row" of info, then a group with a "subtotals for this region" subreport. then a report footer with a "all regions subreport" If the data in paired rows gets long enough that the "Subtotals for region" subreport goes to a new page, it take the last ...

Run Reporting Service in local mode and generate columns automatically?

Hi, I have a SQL query right now which I want to use with the MS reporting services in my ASP.NET application. So I created a report in local mode (rdlc) and attached this to a report viewer. Since my query uses parameters, I created a stored procedure, which had exactly those parameters. In addition to that I had some textboxes which ar...

Anyway to load RDL report content into a WPF FlowDocument or similar?

I would like to know if someone have created a RDL report (running it in Reporting Services), and loaded it into a WPF component like FlowDocument. Since RDL is just a XML, perhaps there's a way to parse the result and avoid using this WindowsFormsHost in order to use the Report viewer control. Would be really nice to have another cont...

ReportViewer / RDLC - how to Selectively hide records?

I'm using vb.net and ReportViewer to show/print RDLC reports. I have a Table control that contains two rows for Detail. The first row prints most of the data, the second row only prints a Comment field. This Comment field only contains a comment for some of the records. I would like that when there is no comment that this second row does...

How to call print from asp.net on a reportviewer control?

Hello, I'm using ssrs with an asp.net reportviewer control to display server reports. We want to do away with the toolbar because it doesn't fit with our look and feel but we want to maintain some of the functionality, the one bit I'm struggling with is the print. Is there any way to bring up the same print dialog as the print button on...

ReportViewer: Grouping / Repeating Table?

I'm not quite sure how to do this. I went to the resource: http://www.gotreportviewer.com/, but I couldn't find the exact answer. I'm using VS 2010 .NET Framework 4, so I assume I'm also using ReportViewer2008. Oh, and I am using RDLC files. They showed a table example where the data was grouped/sorted and they had Group Header and Grou...

ReportViewer: How to load report as an embeddedresource in another assembly using reflection?

I'm not really sure how to go about this. I created a generic class to open reports up for my application. The reports are contained in another DLL that is not referenced as an embedded resource though. If I reference the DLL I can just do: Viewer.LocalReport.ReportEmbeddedResource = "SomeLibrary.ReportName.rdlc"; However, since I'm no...

ASP.NET ReportViewer Server Report Render Stream results in exception

I'm trying to use the ServerReport.RenderStream method from the ASP.NET ReportViewer (2008 SP1), but I'm getting a rsStreamNotFound exception from the method. I've tried the two different lines of code below after setting the parameters. I'm interfacing with SQL Server 2005 and SSRS 2005. I've seen articles about a hotfix for this issue,...