Questions tagged [rdlc]

Client Report Definition (.rdlc) files are files that allow a ReportViewer control to use its built-in processing capability to generate a Sql Server Reporting Services (SSRS) report.

Client Report Definition (.rdlc) files are files that allow a ReportViewer control to use its built-in processing capability to generate a Sql Server Reporting Services (SSRS) report.

The ReportViewer control supports a local processing mode that allows you to run client report definition (.rdlc) files using the built-in processing capability of the control. The client reports that you run in local processing mode can be easily created in your application project.

References

See also the MSDN article on .rdlc files.

2990 questions
5
votes
1 answer

What is the easiest way to make a "Banded" Report in RDLC?

Okay, I may have been googling for the wrong search terms but I can't find how to make a MS-Access style banded report with RDLC (that is the crippled report designer in Visual Studio 2010, not BIDS) And by banded I mean, a report with group headers…
MatthewMartin
  • 32,326
  • 33
  • 105
  • 164
5
votes
2 answers

Bind child object property with in rdlc (Report)

I have a custom object say "objMain" in which i have few properties and also the property of object type (i.e. like a child object). objMain has these properties: 1. Name [type: string] 2. Description [type: string] 3. StartDate [type: datetime] 4.…
Amod Kumar
5
votes
1 answer

Dealing with Arrays and Aggregation In a RDLC Report

I'm trying to create a report using RDLC from VS2012. I've created a dataset from my object which contains all the data to be displayed in report. However this object has some attributes which are arrays and others which are custom objects…
trvll
  • 51
  • 3
5
votes
2 answers

Pass parameters from main report to subreport in RDLC

I have a web page that displays an RDLC report in a ReportViewer. For each record in the main report there is a subreport. I need to pass the data from 3 fields from each record in the main report as a parameter to the subreports stored…
Noelle
  • 772
  • 9
  • 18
  • 44
5
votes
4 answers

Using SUM in an RDLC report on decimal gives weird result

I'm trying to generate an RDLC report where one column, Amount, is going to have a "Total" row at the bottom. This isn't weird stuff, it's a very basic RDLC report, but instead of getting the normal "Total" value at the bottom I get something else,…
Maffelu
  • 2,018
  • 4
  • 24
  • 35
5
votes
4 answers

RDLC report: How can I repeat a group header on each page?

How can I repeat a group header on each page? I have some group that has a lot of rows and thus could not be placed in one single page. I want the group header to put on each pages. I can repeat report-header to repeat on each page but dont know how…
user743246
  • 185
  • 3
  • 4
  • 11
5
votes
2 answers

Conditional Count inside of Group in .rdlc?

I have a .rdlc report, grouped. Inside each group, I have an Id. Some of them will be positives, and others will be negative. I need the difference between de quantity of positives Id's and negatives Id's Something…
Gonzalo.-
  • 12,512
  • 5
  • 50
  • 82
5
votes
2 answers

Add an existing DataSet to Report .rdlc

I have a Report. I need to create another one, similar to the one I have. So I created a second report by copying the first one. Then I created a new DataSet for the new report. I created it also by copying the original dataset (from the first…
Gonzalo.-
  • 12,512
  • 5
  • 50
  • 82
5
votes
2 answers

RDLC tablix colspan equivalent

Is their some sort of colspan equivalent for the RDLC markup? I of course tried colspan and the report doesn't render in design view then, deserialaztion error. The project and zipfile are much longer than the single column to display.
Somejerk
  • 193
  • 1
  • 11
5
votes
1 answer

RDLC calculate running totals?

I am struggling to get a running sum to work on a report. What I want is the following: Product Qty1 Qty2 Total RunningTotal ABC123 100 200 300 300 DEF321 50 100 150 450 XYZ123 -100 -150 -250 200 The total…
Dean Harry
  • 277
  • 1
  • 3
  • 13
5
votes
2 answers

How to select all fields plus some new fields in LINQ?

I got an RDLC report Date Format stored in SQL DB is Georgian. I want to Display date in report as Persian. Using Linq i want to select all fields of DB in addition some new field to be used as Persian Date Fields. I used below syntax: var…
VSB
  • 9,825
  • 16
  • 72
  • 145
4
votes
2 answers

Rendering multiple .rdlc reports into a single PDF using PDFSharp

I am running multiple reports and combining them into a single PDF file. For each report, I pass the datasource, parameters, and report path to the following. The result is a PDF file with the correct number of pages, but all pages are blank. …
RememberME
  • 2,092
  • 4
  • 37
  • 62
4
votes
1 answer

How to open report in a New tab using Got to URL Property in RDLC?

i have used "GO To Url" property of RDLC set to below value; =parameters!ParamUrl.Value +"ReportUIs/MonthlyReport.aspx?SpecDate=" + Fields!SpecDate.Value.ToString() + "&TrainPK=" + Fields!TrainNo.Value.ToString() + "" And it works fine with same…
pvaju896
  • 1,397
  • 6
  • 25
  • 46
4
votes
1 answer

Can Mono create/run reports in rdlc?

I've never used mono and was curious if mono can create/run rdlc reports? What I'm looking at implenenting is a mono asp.net mvc app to use a rdlc to create a report and export to pdf. Is this possible with mono?
thames
  • 5,833
  • 6
  • 38
  • 45
4
votes
2 answers

How to pass object attributes to report (RDLC) C#

I want to fill a report page with attributes of an object and display it in a reportViewer. This object I selected before in the Report Wizard and a DataSet was generated. Now I am trying to use this code to add the values to the report. I am…
Sardar Agabejli
  • 423
  • 8
  • 32