Reputation: 1295
I am trying to do the following in an RDLC Report:
I have a table:
ChequeTmp
[ChequeNum], [ChequeDate], [ChequeAmount], [Invoice], [InvoiceDate], [InvoiceAmount]
There can be multiple cheques in the the ChequeTmp table and for each cheque there can be 0 or many stub lines.
How do I display this data on an RDLC report? Note: I have to first display cheque info followed by its stub details and then another cheque followed by its respective stub details
PS:
I am trying to achieve the following design:
Upvotes: 0
Views: 10895
Reputation: 1295
Solution:
Place the header data and details data in a single table.
Add a Table to RDLC Report and set its data set to that single table.
Add a group: ADJACENT ABOVE
Delete the details row group.
Add a row in the adjacent group.
Merge cells in the first row and put all your header details here in a rectangle.
Create another table outside of the first table and assign your details to it.
Drag and drop that table to the first table adjacent row.
Upvotes: 2