Focal Point
Report Footing and Page Footing

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/7051028331

January 11, 2005, 03:35 PM
<Pietro De Santis>
Report Footing and Page Footing
To have a report footing, you code this:

ON TABLE PAGE-BREAK AND SUBFOOT
"Text"

To have a page footing, you code this:

FOOTING BOTTOM
"Program ID: Test1"

The report footing appears on a separate page after the report, but the page headings and footings are not repeated.

Does anyone know how to take of this - other than recoding the page headings and footings in the report footing?

Thanks,

Pietro.
January 11, 2005, 10:57 PM
GCohen
A page heading and footing cannot appear on the same page as the entire report footing. It would be atop a blank page with no data yet there might be place holders where data in the heading/footing should appear. The idea is to have a completely separate report wrap-up.
So if you want the same page heading/footing you will have to include its text in the report footing.
January 11, 2005, 11:00 PM
Kamesh
If you put ON TABLE SUBFOOT, it will print the subfoot only once for the whole table. You can get the subfoot whenever the sort field changes by using, ON SORTFIELD SUBFOOT
SORTFIELD - whatever you are using for BY .

Hope this helps.