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
0
votes
1 answer

Non repeatable tablix in rdlc Report c#

I need to display some summary details in the RDLC report and also i need that in the form of table. I tried vertical tablix and bond values with DataSet but right now my problem is the summary details are showing vertically twice. Eg. I need Sum1 …
sree
  • 1
  • 1
  • 5
0
votes
1 answer

RDLC data is not changing

i am using rdlc to show a report dynamically based on the parameters.every thing works perfect on the first load .but after i change the parameter and load again even if the data table value is changed.rdlc is showing the previous result.what am i…
AfterGlow
  • 227
  • 3
  • 17
0
votes
1 answer

How to page break after specific Grouped record(Suppose 6) in rdlc?

I have a 3 level grouped Table and want to page break when the size of group cross the 6. I used parent group with sort expression like System.Math.Ceiling((RowNumber(Nothing)-1)/6)+1 But its giving an error The definition of the report…
0
votes
2 answers

How to access dataset values inside report header section and display the Page Header value in every page

I want to develop a report where the report header section values change on different pages and the report body should bind according to the header values. And the header section should display in each page of the report even though there is a…
0
votes
1 answer

Local RDLC tablix get expand from second page

I am using Rdlc report in windows application. rdlc report is working perfect but the only problem with the design. when running the report in reportviewer design is constant on first page but from second page TABLIX get expand around 1" Right and…
0
votes
1 answer

How to hide a row in RDLC when particular field value matches with some string value?

For Ex:In RDLC, I have a Grid with the following columns period, Quantity, description etc.. I will get Period values as dates and one value as "Avg", Now when My Period Value is "Avg", I want to hide that row from Grid in RDLC report.how can i do…
0
votes
1 answer

Pass parameter to rdlc from page with reportviewer

I have a visual studio 2013 web application which works with entity framework and I want to display a simple tabular data report using a RDLC report. I have created a seperate web page and added a reportviewer control. Also I have created a RDLC…
0
votes
2 answers

RDLC expression error

Hopefully I might have the easiest question to answer but so far I couldn't figure it out. I have a RDLC report with following expression. =Iif(Sum(Fields!OriginalTotal.Value) = 0, 0, (Sum(Fields!WorkingTotal.Value) -…
ecasper
  • 489
  • 1
  • 10
  • 30
0
votes
1 answer

Unnecessary Image box in RDLC report

I have developed one report using .net rdlc. In that report it is showing image box. although I did not used image in the report. I have also checked the xml of the rdlc report . The xml also dose not have any image. Please help me. Thanks! [The…
Ujwal Khairnar
  • 508
  • 1
  • 4
  • 19
0
votes
1 answer

RDLC report dynamic columns based on code

I have an MVC application which displays reports based on the report viewer. Currently, the report has 4 columns and the requirement is to show columns based on the parameters selected. I had achieved the solution by using sending parameters to the…
0
votes
1 answer

RDLC Report Background Image Assignment Issue

I want to assign specific image to my RDLC report,so that receipt should generate with background image with proper alignment,header and data should print to specific area.
Swapnil
  • 654
  • 7
  • 27
0
votes
1 answer

Need to show sum of column value at end rdlc file?

I'm working on rdlc file getting values from stored procedure from that i have created dataset to show all values on rdlc file. Need to show AVG of column value at end rdlc file how to do this? I tried with AVG aggregate function using expression…
0
votes
1 answer

RDLC - display list of objects on rdlc report

I would like to display list of objects in my report contain in dataset. Example. MyDataSet has: List {get; set;} So how could I able to display StudentAddress in my report which is a report. Thanks..
Jayesh Tanna
  • 398
  • 5
  • 17
0
votes
2 answers

Can I create an RDLC dynamically and pass it to report viewer instead of using a file?

My problem is that I need Ad-Hoc reports with variable queries and variable content/columns/etc. customized and saved per user and I don't have a solution yet. I have an MVC 4 C# application with a SQL Server database and I have SSRS available. I'm…
0
votes
1 answer

Saving data in RDLC File

Can any one tell me if it is possible to save data inside an RDLC file, I am using the syncfusion Report Viewer and I want to be able to save the report it generates as a PDF, Execl ect but the problem we have is that we compute the values for the…
1 2 3
10
11