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

最后都变了- 提交于 2019-12-08 05:27:01

问题


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


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


回答1:


create report with subreport will solve your problem

  1. you can create one report with one dataset with (BIL NoB NoW Est TotalXYZ) columns.
  2. Now link that subreport with the BIL
  3. Now link subreport with main report the BIL (FK)

Hope this help




回答2:


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):



来源:https://stackoverflow.com/questions/14271392/details-rows-inside-tablix-ssrs-reporting-service-records-with-details-rows-und

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!