I need to make report, that has summary after Details had printed, not after every each Detail.
I only know the Page Footer, but it's at page bottom not after the Detail Band.
Is there a QRBand that could go after Detail Band?
Or can you make PageFooter height resize on every page?
Summary Bands print only at the end of the report immediately after the last 'detail' (unless the
AlignToBottomproperty is set totrue).You should add a
TQRBandto the report and set theBandTypeproperty torbSummary.EDIT
If you need to show intermediate results on every page you could add the
FooterBandand theSummaryBand.Summary Bands prints only at the end of the report (last page) and you can use the
BeforePrintevent of the summary to disable the footer band.EDIT2
You can also try with a
QRGroupBandand aQRFooterBand.In the
GroupBand:Expressionproperty for separating one group of products from another (the band could also be empty)FooterBandproperty. This is where you link the header band to the correct footer band and encapsulate your group inside. Place the header band first and then go back and place the footer band by dropping aQRBandcomponent and immediately changing theTypefromrbTitletorbGroupFooter. Once you have done this, you can go back to theQRGroupheader and select the right footer band to use.The
FooterBandis where you are printing summary totals for each product.