I'm creating a report with many rows, this rows are broke in Groups that contains MiniPages. Every report page contains two MiniPages.
In some cases, the information of one group need to be divided in two MiniPages, when this happens i need to display one footer in the first page (that says "to be continued...") and a different footer in the other page (with totals).
My question is, how do i know if the information will continue on a new mini page or if it's single page?
The following code shows me the current page and the total pages of that mini page group, "MiniPage" is my mini page name:
format(getPageNumber("MiniPage"),ARABIC)+" of "+format(getTotalNumberOfPages("MiniPage"),ARABIC)
The problem is that this comand is "trapped" inside a "PageNoBox", isn't there a way to test the "getPageNumber" and "getTotalNumberOfPages" in the "Visibility Contition"? Or is there something like a Section "Last Page Footer"?