Databand Footer
Fer Castro
Ciudad de M?©xico
Hello
I am working with a report that uses a databand (master databand) and I have fixed the number of rows printer in the band :
Well, I have a problem with the footer because the footer is printed after the whole dataset is printed, or, is printed after every row in the dataset.
is it possible the footer to be printed after every group of rows? I mean, if my dataset has 25 rows, the footer must be printed every 10 rows, just before the new page.
data band
row1
row2
...
row10
footer
->New Page
row11
row12
...
row20
footer
->New Page
What kinf of component do I have tu insert in my report? is a band? a footer? a child?
Thanks and I hope to be clear.
Regards
I am working with a report that uses a databand (master databand) and I have fixed the number of rows printer in the band :
    if <line> mod 10 = 0 then
        engine.newpage;
Well, I have a problem with the footer because the footer is printed after the whole dataset is printed, or, is printed after every row in the dataset.
is it possible the footer to be printed after every group of rows? I mean, if my dataset has 25 rows, the footer must be printed every 10 rows, just before the new page.
data band
row1
row2
...
row10
footer
->New Page
row11
row12
...
row20
footer
->New Page
What kinf of component do I have tu insert in my report? is a band? a footer? a child?
Thanks and I hope to be clear.
Regards
Comments