It should be very simple and should employ multi-value parameters , but not able to figure out how ?
This report takes parameters from the GridView
I have a gridview in an asp.net web page which has print button for every row to print this report for that row.
Now, there are as many reports as there are rows in the grid.---[This part is done]
So,how about combining all these reports into one single report
|
|
||||
|
|
|
You can add a subreport for each one of you reports. You just create a new report and start inserting subreports in each row. Check this documentation: http://msdn.microsoft.com/en-us/library/dd220581.aspx Here's an example for you: 1 - Create a new report. You can then add a tablix to it, in case you have more info, which is the case in my example. Just don't forget to add a dataset to that tablix if that's your case. This is how it would look
Each gray line is a subreport. 2 - To insert a subreport just right-click a cell and go to 3 - Right-click your subreport, select
4 - You can then set the parameters your subreport will receive:
Case 2: if you don't need a tablix for aditional info, just repeat the same process in a UPDATE As I said in my comment, here's one report in which I do exactly what you want:
As you can see the subreports are part of the main report's body that has other data. I need to repeat these subreports for each record and that's how it is done. Here you can see the
From what I understood, that's what you want. That way for each record its current |
|||||||||
|






