I have a report which I have shown in the screenshot which shows the design time and run time snapshots.
The source of these reports would be a incoming xml document which I will query and display it on the ssrs report for each student and his attributes
My requirement is to build this entire report dynamically based on the number of students.
So say in my xml If I get n number of students I need to build n number of SSRS reports which would be separated by page breaks.( see screenshot which shows 1 report page for 1 student) I want similar report for other students appearing in the same report with page breaks.
sample xml has 2 students coming in ( note for the report I have not built the complete xml) but I m trying to figure out if there is a way in SSRS to build reports dynamically based on the number of students in a xml ?
<root>
<stud1>
<attr1>10</attr1>
<attr2>200</attr2>
</stud1>
<stud2>
<attr1>20</attr1>
<attr2>300</attr2>
</stud2>
</root>