User843229376 posted
I have one matrix in which Data part of Matrix has Table. The last column of Table named "PageBreakParam" is increasing number for each ROW group(StudentId).
I have grouped the Matrix on StudentId and has page break on studentId.so every New Student record will be displayed from new page
So for first student the matrix is like this
|
1/1/2011
|
1/2/2011
|
Period 1
|
Maths
|
English
|
1
|
2
|
for Second Student
|
1/1/2011
|
1/2/2011
|
1/3/2011
|
1/12/2011
|
1/14/2011
|
Period 1
|
Maths
|
English
|
Games
|
Science
|
History
|
1
|
2
|
3
|
4
|
5
|
Now what I want is to insert another Page Break condition that depends on PageBreakParam. If the PageBreakParam%2=0, then there should be page break. so break will occur for 2nd Student after 2 and 4th column.
This is what I want ...page break after nth column(generalised)