Footer band behavior.
In a report i print the totals of some numeric columns in the footer band.
When the summary band of this report start, the totals in the footer bands
are correctly printed after the summary band but this type of behavior is
not ok for my need.
Only in the last page where is printed the last detail row i wish to print
the footer totals after the last detail row and before the summary band.
There is a way to do this ?
If not there is a way to create a bands that may have this behavior ?
The only solutions to this problem that i have used is to duplicate the
footer band elements into the summary band and set the footer.visible to
false in the beforeprint event of the summary band.
I use ReportBulder Enterprise 6 with Delphi 5.
Thanks in advance.
Massimo.
When the summary band of this report start, the totals in the footer bands
are correctly printed after the summary band but this type of behavior is
not ok for my need.
Only in the last page where is printed the last detail row i wish to print
the footer totals after the last detail row and before the summary band.
There is a way to do this ?
If not there is a way to create a bands that may have this behavior ?
The only solutions to this problem that i have used is to duplicate the
footer band elements into the summary band and set the footer.visible to
false in the beforeprint event of the summary band.
I use ReportBulder Enterprise 6 with Delphi 5.
Thanks in advance.
Massimo.
This discussion has been closed.
Comments
The report has two properties:
AbsolutePageCount and AbsolutePageNo. On the BeforePrint event of the
FooterBand you can do something like:
ppFooterBand1.Visible := (YourReport.AbsolutePageNo =
YourReport.AbsolutePageCount);
bye
a custom component, like a label in the header band or some other static
text control. Shrink the group header band so that it isn't shown. Then you
will get a group footer band at the end of the report in which you can place
the data that you want before the summary.
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com
footer band and in this new group band.
Is correct ?
Massimo
footer band on the last page. Remove the page footer band from the report
if you don't need it, or you can set it to visible false after the group
footer prints.
Cheers,
Jim Bennett
Digital Metaphors
http://www.digital-metaphors.com
info@digital-metaphors.com