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

How to Left align and right align two different expression in the same text box in RDLC reports?

Platform: RDLC report Tool: Microsoft Visual Studio 2010 In RDLC reports, is there a way to left and right align two different expression in the same textbox, as one of the text need to start from left side and the other from the right side of the…
Harsh Singhi
  • 117
  • 2
  • 5
  • 14
4
votes
1 answer

Show subtotal of a columns in the same Tablix in RDLC

I am trying to generate subtotal of multiple columns in my Tablix, not in footer or header. I am using this expression: =SUM(ReportItems!ColumnName.Value) This one works fine in footer.But for my work requirements I can't use the footer and must…
Rafat Ahmad
  • 169
  • 1
  • 10
4
votes
2 answers

RDLC files deploying and size

I'm working on a projet where I'm going to store a lot (150) of RDLC reports that I need to deploy. This files are in .rdlc format. Could a number this big of files be a concern for the size of the deployed application, could there be issues…
SilentRage47
  • 934
  • 2
  • 14
  • 31
4
votes
2 answers

Grouping data in an RDLC

I'm sorry if this seems silly, but I'm new to using Report Definition Language (RDLC) files and I'm looking for advice on the best "plan of attack" for a report I must create. THE REPORT The report (itself) must display a table of data above a…
Prisoner ZERO
  • 13,848
  • 21
  • 92
  • 137
4
votes
1 answer

Print RDLC Report without showing ReportViewer Control

I was wondering if is possible to send/print data from DataGridView directly to rdlc report without binding it to ReportViewercontrol. There are many threads about binding dgv data to report viewer control. I don't want to create another form with…
NavCore
  • 1,115
  • 3
  • 10
  • 25
4
votes
0 answers

RDLC Column headers not working proper when EXPORTED to PDF

With a report in RDLC i had some problem setting up column names on top. From hours of crawling i came on this solution of setting up static row properties in Advanced mode as following. RepeatOnNewPage = True KeepWithGroup = After FixedData =…
Maulik Modi
  • 1,205
  • 12
  • 22
4
votes
3 answers

RDLC Grid Lines in VS2010

I'm using the RDLC Report Designer in VS2010 10.0.3 RTM release. I'm trying to turn on the gridlines in RDLC design view. I can turn on the rulers, but I can't seem to find the option to turn on grid lines. Anyone know how to do this?
user284654
4
votes
0 answers

How can I embed a formula in RDLC that will perform after exporting as Excel

I know that I can get the summary by using formula in rdlc. But I want to know a way how can I perform a percentage counting in a excel after it export in the rdlc report. I will get the result in the excel when I give something input. It's only for…
4
votes
1 answer

Rdlc page breaks in dynamic subreports

I have a rdlc report with some static information at the begining, and after this information there is a subreport that will render N child subreports depending on the datasource, I need the data of each subreport to be rendered in a separate page.…
Dalsier
  • 377
  • 3
  • 14
4
votes
4 answers

How to run a rdlc using coding

I have created an rdlc where I have used dataset taken as a new item in solution explorer for designing my report. After binding my report from that datasource which is named as Dataset1. I have created its object and tried to fill this datasource…
Shantanu Gupta
  • 20,688
  • 54
  • 182
  • 286
4
votes
2 answers

Get Total Page Count in RDLC from code

I am trying to get the total number of pages of a report after it was rendered. Tried the following, both didn't work. ReportViewer.LocalReport.GetTotalPages(); ReportViewer.ServerReport.GetTotalPages(); Sample Code: ReportViewer viewer = new…
hakuna
  • 6,243
  • 10
  • 52
  • 77
4
votes
1 answer

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…
Eric Brown - Cal
  • 14,135
  • 12
  • 58
  • 97
4
votes
2 answers

How can generate RDLC report on two columns?

I'm using Visual Studio 2010. I must generate a REPORT like that: _________________________________ | NAME SURNAME | NAME SURNAME | | ADDRESS | ADDRESS | | NUMBER | NUMBER | | | | |…
ilMattion
  • 1,841
  • 2
  • 24
  • 47
4
votes
2 answers

Summing time in RDLC report

In my RDLC report i am displaying times worked by employees. I want to sum the time for each employee. I am returning the hours worked in a record set using a nullable timeSpan type and formatting them as hh:mm in the report as so: 7:30 4:45 …
Alicia
  • 1,152
  • 1
  • 23
  • 41
4
votes
1 answer

Microsoft.ReportViewer.*.dll's are not showing up in references (v11 or 12)

I have been working with RDLC reports using the ReportViewer.Common & ReportViewer.Web/WinForms dlls, version 10. The files produced by these dlls are a lot larger than those generated on a server instead of locally so I thought I would update the…