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
1
vote
1 answer

An error has occurred during report (rdlc) processing

I got the error While I am creating RDLC report. Error is that " An error has occurred during report processing. Cannot create a connection to data source 'ds_SalesQuotation'. Calling 'Read' when the data reader is…
Safeena
  • 395
  • 2
  • 7
  • 21
1
vote
1 answer

Row suppress in SSRS

How to suppress the Row based on dynamically generated column(field)? Refer image, marked column dynamically generating. How to suppress the Row if these are empty or zero. https://i.stack.imgur.com/dW4UP.png i have used below formula. But i wont…
1
vote
0 answers

How to show current row grouping value in multi column rdlc report

I am creating a three column rdlc report where I need to show current running value of a field on which rows are grouped. This running value I need to display in header of report. So whenever the field value changes it must reflect in the…
1
vote
0 answers

How to save RDLC report as image file?

I am trying to save RDLC report as image file on local drive. I am able to show image in report. But I don't know how to save as image file. Please help. Thanks in advance.
1
vote
1 answer

How to show horizontally data in rdlc report?

I am using visual studio 2013 and access database. i want to display horizontally data in rdlc report as shown in image. Thanks in advance.
1
vote
1 answer

How to show Image(memory stream format) on RDLC report c#?

I want to show barcode image on rdlc report. I get a memory stream of that barcode image using following code. Installed nuget from https://www.nuget.org/packages/Aspose.BarCode/ /// This function generates the QR code image using given string and…
Neo
  • 15,491
  • 59
  • 215
  • 405
1
vote
1 answer

Repeat image in body to every page in RDLC

I want to repeat an image (behind the text) on evrey RDLC report page. Just like some letter heads. Please make note that, The report is very simple and not include any complex data. It has only a single dynamic string list (coming from RIA Service)…
Inam Jameel
  • 237
  • 1
  • 7
  • 13
1
vote
1 answer

Formatting a summed number within an iif in RDLC

I cannot seem to figure out how to format a number within a textbox that is being summed within an iif. Here is how my code looks: =iif( SUM( iif(expression, number1+number2+number3, number4+number5+number6) ) )>=10000000,true, false)…
DDushaj
  • 127
  • 8
1
vote
0 answers

passing a parameter to query in MVC4 dataset for RDLC Report

Note: I am using Microsoft Reports in MVC4 I have created a DataSet named DataSet1.xsd in VisualStudio in which i have added a TableAdapter named 'st' and in that tableadapter i have created DataTable named dt1. There are two methods in dt1…
Mohsin
  • 902
  • 3
  • 23
  • 49
1
vote
0 answers

How To add total in Matrix in RDLC Report

I used matrix in RDLC , I need to add a total at the bottom of the report to total each column like Below image ..
Rageesh Geetha Raman
  • 1,409
  • 1
  • 10
  • 13
1
vote
1 answer

RDLC Report loads only on page load but not button click event

I am new to the asp.net programming and i want to load the rdlc report in reportviewer whenever i click button.The problem is report is loaded correctly if i call LoadReport function on page load but problem happens when i load the report on button…
swapnil
  • 81
  • 1
  • 3
  • 10
1
vote
1 answer

How to create generic rdlc templates with dynamic data tables generated at run time?

I have an rdlc report in my solution. I want to set the report datasource with run-time generated data table. How can I do that? I haven't used any xsd file to design the report. I just want to display the data table from the database on the report.
1
vote
0 answers

Naming Sheets Name on ExportingExcel Feature of RDLC in VS2010

I have created .RDLC report in VS.Net 2010 and put group at first column and page break on that group.when my report gets generated and export that report into excel sheets names become as "Sheet1" and "Sheet2" but I want these sheets name will be…
user1324392
  • 7
  • 1
  • 6
0
votes
1 answer

How do I resolve 'subreport not found' error when using ReportViewerCore.NETCore 15.1.17 with ASP.NET Core rdlc subreport?

When I used it in my code it re-issues the pdf but returns the error in the position subreport. Error: The subreport 'attendance' could not be found at the specified location attendance. Please verify that the subreport has been published and that…
0
votes
0 answers

RDLC Report is showing nothing

This is my stored procedure: IF (@Action = 'selectbyLocationSummary') BEGIN SELECT SUM(INHD.TaxableAmt), SUM(INHD.CGSTAmount), SUM(INHD.SGSTAmt), SUM(INHD.IGSTAmount) FROM InvoiceHD AS INHD …