Display matrix between each instance of a different group matrix - reporting-services

I have one main report that contains a tablix that is grouped and show the result fine and page breaking within each group of the matrix.
What I'm trying to achieve is to show a different matrix (with different DataSet) next to each group of the previous matrix.
Any help would be appreciated.

I added a subreport inside my matrix and that did the trick.

Related

3D Area Chart SSRS Report 3rd Axis

I would like to have a 3D Area Chart in my SSRS Report, which contains 3 Dimensions like in Excel to display the month, volume and categories, the data of these three columns.
It should look like this example below (Pic just an example, taken from Google):
The problem now is,I seem not to be able to add the third axis to display month in ssrs. Does anybody here have a solution for that?
Thanks!
I'm not sure that you can achieve your example without buying some additional chart types.
The closest I could get (in the 10 minutes I had spare) was to setup a 3d Area chart as follows... (note: my dataset only contains year, month and amount for simplicity)
Which, based on some sample data I had... gives the following..

Table of Contents with Page Numbers in SSRS

I have been researching how to do this. It looks like I can name the DocumentMapLabel for a matrix item, in an SSRS report. I can then create basically a hyperlink to that matrix, in another item (such as another cell in another matrix). What I can't seem to figure out, is how to get the dynamic page number to also be computed. It would seem if you could have page numbers in the footer, then SSRS is capable of calculating a page number. I want to get the page number, that the beginning of a matrix or tablix starts at.
Is this something that can be done?
Thanks!

Interactive Sorting in a paginated row group Tablix with Chart

I have simplified my problem as follows:
A tablix with 2 columns dataset: Code (a, b, c, ...), and Value (random < 100).
Make a paginating group of 5 rows from the detail, steps here.
Add an additional row inside the group, merge all columns, put rectangle to hold a Chart pointing to the same dataset. This is Chart1.
Add another row outside the group, to hold another copy of the exact Chart above. This is to later help the interactive sorting to work on the details beyond the boundary of the groups. This is Chart2. The final design will appear like this:
Create an interactive sorting for the column Code following this:
The final work shall look like this, where you can navigate the pages, while also have the 'sliding window' effect for viewing the chart, that is: Page 1 is a-e, Page 2 is f-j, etc.. Note that the interactive sort is also honored.
For simplicity, please download my RDL here.
Now, my problem: I have to make Chart1 to be on top of the Tablix1.
Doing so will make the column header of Tablix1 to be sandwiched between the Chart1 and the details. This will make the Interactive Sort to behave incorrectly, that each page have its own state of Interactive Sorting. How to solve this? Modified RDL here.
This link solves the question by doing a self referencing Drill Trough by the click of a cell or image. The Action will pass the parameter to toggle between Ascending and Descending sorting order of the Tablix.
Combining the above the solution with this other link, we can keep the number of tablix stays to one, regardless of the number of columns to sort.
Get the final RDL here.

Repeat multiple charts on each page of subreport

I've a SSRS page which has header, two charts with different datasets and a subreport below charts.
When I run the page and drill down (I click on one of the bars of chart, it calls itself) and data populates in subreport which spans multiple pages.
My problem is I want to repeat those charts on each page. I've searched and tried a lot However nothing worked forme.
How can I repeat charts in multiple pages of subreport? Please note that I've got charts with different data sets and that subreport is used at multiple places.
Thanks for the reply mike.
I believe it can not be achieved using subreports. hence, i embedded that subreport tablix into report and did as suggested by mike(charts went into header row).
Since tablix accepts only single dataset, i created a big dataset that has all the fields for two charts and data and applied required settings to get the job done.
It worked for me(at least to get the job done.).
I had a report that after each record (customer), I put a page break so that each record got its own numbers in one page. I also wanted to add a graph specific to only that customer. So i added the graphs into a table. In the table where my graphs were place, I added a parent group group - the same group as my data and I checked that the table also had the page break on the same group. This separated each record into a page each and also added the graphs to its corresponding record.
I would try to wrap the two charts and subreport inside a tablix. The dataset for the tablix would be one that returns a single row.
The two charts would go into the header row(s). The subreport would go in the Detail row.
Row and Column sizes need to be expanded to fit the chart and subreport sizes. There may be only one or two Columns depending on your layout.
Then I would use the dreaded "Advanced Mode" technique to get the header row(s) to repeat on each page, e.g.
http://blogs.msdn.com/b/robertbruckner/archive/2008/10/13/repeat-header-and-visible-fixed-header-table.aspx

Drilldown on category group for stacked chart - ssrs 2008?

Is it possible to include drill down or link to report functionality in the category group (x-axis) for a stacked bar chart report?
OK, based on the comments above it's not exactly possible to do what you're asking. You can certainly apply drillthrough actions at a data level, which would mean users could click on the chart area:
So you would to set the Action up to pass a parameter based the series/category of the area thats clicked, which would effectively accomplish the same result, just in a slightly different way. But clicking directly on the axis is not possible.