If you have an rdlc report with grouped columns in a table (table). I want to add a footer row that spans all dynamically created columns and shows the total for all columns. How can I tell a cell that it should span all created columns created by a group?
|-------|-------|-------| | col 1 | col 2 | col 3 | |-------|-------|-------| | Column-Group Total | |-----------------------|
Please note that calculating the amount is not my problem. I am only looking for a way to tell the report viewer to combine cells created automatically through a group of columns for a specific row.
Update
Unfortunately, so far I have not found a solution for this. Moreover, the same question that I also met in a report where I had to add the totals of a row group in a combined column.
|------|-------| |row 1 | | |------| Row- | |row 2 | Group | |------| Total | |row 3 | | |------|-------|
I find this a fairly common way to display totals. Is this not possible in any case, or am I not seeing something obvious?
Update2
Here is a screenshot of what I mean:

In the middle there is a group. This creates n columns at runtime. What I want to do is "general coverage category" to cover all dynamically created columns. This means that columspan cells are n . There is only one cell, and in this cell I will show the total number of all categories. It is almost the same as a report viewer, automatically created at the top of the group.
reporting-services ssrs-2008 rdlc rdl report-viewer2010
HCL
source share