Questions tagged [dynamic-rdlc-generation]

Use this tag for questions about the dynamic generation of the Client Report Definition Language file

Dynamic generation of RDLC Client Report Definition Language file

157 questions
3
votes
0 answers

How to feed a RDLC report with a custom IEnumerable grouped by

I want to reuse the same RDLC to display different tables depending on a format field. But my report does not show anything when the data source has the IEnumerable> return type already grouped. So if the users picks the…
diegosasw
  • 13,734
  • 16
  • 95
  • 159
3
votes
1 answer

Add more than one tables in RDLC

As question states I want to add more than one table in RDLC report. I have added one table in few reports. But don't know how to add multiple tables in a single report. I am adding tables using objects as DataSource. My database is SQLite. I found…
DhavalR
  • 1,409
  • 3
  • 29
  • 57
3
votes
2 answers

The tablix ‘Tablix1’ has an incorrect number of TablixCornerCell.

An error occurred during local report processing The number of TablixCornerCell within TablixCornerRow at index: 0 must equal the number of levels in the TablixRowHierarchy containing TablixHeaders.
S2K
  • 1,185
  • 3
  • 27
  • 55
3
votes
1 answer

How to show a title on each page of the report dynamically created reportviewer

I create the report dynamically, i e, I have no way to open a designer RDLC and fix it. I create a table and fill it through the dataset. Getting XML file and export it to PDF file. But even if I write string deviceInfo = "" + "…
Irena
  • 111
  • 4
2
votes
0 answers

Set rdlc report a4 page height of tablix to fill remaining height of the page based on row size

I am designing an invoice in RDLC report. In the body part I have a table which contains Name, Price, Quantity and Amount columns. This table also contains a footer row that displays some totals. Below the table is summary section that contains…
2
votes
1 answer

How to dynamically generate columns in rdlc report according to the data in dataset?

I would like to generate a report in which column name and value should be dynamic and no. The column also should be dynamic.
SamStha
  • 39
  • 3
2
votes
1 answer

.rdlc and PDF - font overlaps horizontally/does not render correctly when printed

Community I'm facing problem in rdlc. i'm using (.rdlc) in window application to print report. Issue : (space between char)Fonts of report are getting overlap horizontally same issue also happens in export and Print.This issue facing after system…
2
votes
1 answer

Stepped Report for Recursive data in RDLC

I have one requirement in which we need to show data in the form of parent, child, grand-child upto multiple levels. saw some blogs but couldn't find any specific solution for that. data should be shown like:
shubham bahuguna
  • 384
  • 4
  • 16
2
votes
1 answer

How to display RDLC charts in MVC without using ASPX

I have a line graph created using Reporting in MVC. But unable to display it using Views. Can someone please help me on how to display rdlc charts in MVC?
2
votes
1 answer

RDLC grouping rows

I'm trying to do a rdlc table/matrix gruoping by Id. I have a DataSet which is returning: Id | name | price | quantity | subtotal | comment The comment column is optional,also it can have multiple comments per Id so it could return duplicate rows…
Luis Rosales
  • 123
  • 1
  • 1
  • 9
2
votes
1 answer

how to get the page number of a rdlc report in the report body

How can i add page number in the report body of a completely dynamic report. I have already tried Writing the expression in the text box: =Globals!PageNumber or, ="Page "+ Globals!PageNumber.ToString()+" of "+Globals!TotalPages.ToString()…
Rakesh
  • 289
  • 1
  • 3
  • 8
2
votes
4 answers

How to dynamically adjust table column width in RDLC report

I have a RDLC report in C# which displays a table. I am providing a facility to the user to select the required columns to be displayed in the report. So when the number of columns in the report are reduced half of the page on the right side…
Nilesh Barai
  • 1,312
  • 8
  • 22
  • 48
2
votes
1 answer

RDLC in VS 2010, how to display dynamic data in a table row

I have my report and data ready. The report is like i need to select a center name (Ex: Raleigh(0003) ) from the DDLB. and i will submit that. Now i will get the report for the Raleigh Center. Here, i need to see the text on the top of the report…
2
votes
1 answer

Color specific cells in a Tablix Textbox RDLC Report based on Condition - Vb.net - RDLC

I have made a RDLC report which generates its tablix from the dataset I provided. I need the content of cell(each Textbox in Tablix) to change its backColor based on its content. Eg: Name | Val Joe | 80 Lee | 60 Fred | 30 Bill | 57 I…
Ashish Emmanuel
  • 728
  • 11
  • 23
1
vote
0 answers

Add and remove columns from a Tablix in rdlc report

I want to create a report with dynamic number of columns. I have used the solutions of these two following links to load and modify my rdlc report…
M_Mogharrabi
  • 1,369
  • 5
  • 29
  • 57
1
2
3
10 11