Details rows inside tablix SSRS Reporting service, Records with Details rows under it

reportingreporting-servicessql-server-2008-r2ssrs-2008-r2

Now it is a report with a tablix in which the records are like
every row has some details rows under it.
and the details row can have one or more records based on the main tablix rows

To elucidate the problem, plz have a look
enter image description here


Did some search here and there, but not able to figure out how to accomplish this.
Sub-reports inside the tablix cell, but how will it keep the track of the current row

One thing more : Do I need to create two separate datasets for this and bind accordingly or write query as a single dataset and do some grouping ?

any ideas !

P.S: SSRS r2 environment, native mode reports for web application

Best Answer

You can achieve this with one Dataset and one Tablix.

The Dataset will have all the columns in the report, with multiple rows for each BIL value.

The Tablix will have four rows and one group based on BIL.

The first row will be the Tablix header row, with the main column header details.

The next two rows will be group header rows. The first row will contain the group details, BIL, No Bayar, etc. The second row will contain the detail row header details.

The last row will be the detail row which will contain the COL1 and COL2 detail values.

You will see something like this (you'll need to fill in the TextBox details as appropriate):

enter image description here

Related Topic