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
0 answers

I have created a .rdlc-Report under VS 2012 using the report i want to assign data source and report name at run time

I have many reports for my project and I have just a report Viewer and want to open all the reports in this viewer, for this viewer data source is assigned at run time and report name also DataSet ds = new DataSet(); DataTable dt = new DataTable();…
alizee
  • 1
  • 1
  • 3
0
votes
1 answer

Generate RDLC through c# code

Is there any method to generate the rdlc file programatically? I tried looking on MS sample but it is only for rdl file. Thanks
Vinod Maurya
  • 4,167
  • 11
  • 50
  • 81
0
votes
0 answers

Getting Data from select query for RDLC report

I need to create an RDLC report. For which I can use only select statements and not any other DB objects as the database is read only. Is there any way in which I can populate the table with data from the query.
0
votes
0 answers

How to substract 2 sub groups sum in rdlc report

I am using rdlc report to display a report. In that I am using Groups and Sub groups; I want to substract the sub groups sum and display it in another text box. How to do it. In the image : Sub group 'Expenses' sum is 86 Sub group 'Income' sum…
0
votes
0 answers

how to dynamically assign column heading for rdlc report

I have a rdlc weekly report. The user can select date from and date to. Then the report will show the sales done on that week separated by hours. eg: let say user entered 06-Jun-2016 and 12-Jun-2016. Then a sample report will be like below Hours …
Sachu
  • 7,555
  • 7
  • 55
  • 94
0
votes
1 answer

How to apply color in RDLC report field?

i have try but not effect in report so please help me... Report --> ReportProperty --> Code Public Function GetColor(ByVal st as String,ByVal billamt as String,ByVal paidamt as String) As String Dim retVal as String = "" If(st = "Paid" & paidamt !=…
0
votes
2 answers

How to get the table at the center of reportviewer in my form?

I have Created a report dynamically from c# and done it successfully, Now the problem is it is aligned in Right and i wish to bring it at the center. How to do that ? My code is here : private void ShowReport() { ReportDataSource rds = new…
test test
  • 141
  • 4
  • 15
0
votes
0 answers

How to set fixed No. of rows display in the group section in rdlc

I have table in member billing.In that 11 days as fixed in billing every time. Some member not having 11 days record .ie 5days or 10 day or like that.In that I want add blank rows to set 11 days with 11 rows.How to make it rdlc. see the image enter…
Nandha
  • 41
  • 7
0
votes
0 answers

Anything inside <> in RDLC is being omitted

I am using a text box : Expression inside it holds value: Name1
Description 1..Hi this is 1
Name2
Description 2...Hi from
I am using option : HTML-Interpret HTML tags as styles as I need formatting.…
nisha kanani
  • 273
  • 1
  • 4
  • 16
0
votes
0 answers

Show External Image in RDLC Tablix based on ID Column

It been one day hole to shortout this. I have created a tablix with column like this : StuID ---------- -StuName---------Image(External) P1- -------------------A ----------- show image of stuID P2 --------- --------- B …
0
votes
0 answers

How to add Total on RDLC multi group ie..cell is grouped in row wise as well as column wise:

IT will be expand when running in ssrs,i am trying to add total its show wrong total. The Query I am Trying: SELECT MTime,CDate ,MNAME,MemNo,Liters, FAT, SNF, MRate, Amount FROM tblCowMilk INNER JOIN TBLMEMBERS ON tblCowMilk.MemNo =…
Nandha
  • 41
  • 7
0
votes
1 answer

How to create report (RDLC) with dynamic datasource?

in my project, i have to show 100+ same report with title, description and list. i want to create one rdlc file and set title, description and list datasource (i can not predefine column numbers and types. it will be defined at runtime).
Baris
  • 445
  • 2
  • 10
  • 22
0
votes
1 answer

Where can I download the ReportDefinition.xsd for SSRS 2008 R2

I need to dynamic generation rdlc file,but MS website link is broken: reportdefinition 2010
guaike
  • 2,471
  • 9
  • 31
  • 42
0
votes
1 answer

How to remove null value legend values in pie chart in RDLC

How to remove null value legend values in pie chart in RDLC. I have set an expression in the visibility property. =IIf(Fields!grp.Value = "", True, False) But it is not working. But grp value is null in the dataset.
Lilly
  • 15
  • 6
0
votes
1 answer

How to write an expression to display percentage values along with legend values pie chart using RDLC

I am generating report using RDLC. How to write an expression to display percentage values along with legend values pie chart using RDLC
Lilly
  • 15
  • 6