keepingbusy
Programmer
Hi
I have a question about the creation of a report form:
[ul]
[li]A report form has been created (myreport.frx)[/li]
[li]In the TITLE band are label and fields which only appear on page 1 of the report - Thats ok and what I need[/li]
[li]The PAGE HEADER band also contains label and fields which appear on subsequent pages which are > 1 - That's also what I need[/li]
[li]In the DETAILS band is a couple of fields, one of which is memo field (set to stretch as appropriate) which appear on all pages - Thats ok too[/li]
[li]The PAGE FOOTER band also contains a couple of labels and fields which appear on every page as you would expect[/li]
[/ul]
Now, what I can't figure out is how to add text and fields from a full page that I want to show as a last page. So what I mean by this is:
My report prints out correctly, showing title band, page headers (if more than one page), the details from the memos fields in the details band and the page footer information.
I have a full page of certain fields and text which are from the Parent table that are fixed and I want these to be part of the complete report. I can run the reports I have created independently such as:
but ideally I would want these to be one entity instead of two.
Causing two REPORT FORM statements is ok if you just want to "Straight forward" print out documents and thats fine but I want to save the report in certain formats and I have found foxypreviewer which works an absolute treat and converts the reports into pdf's, rtf's with ease.
So with this in mind, how can I add that last page to my report?
I have tried adding additional DETAIL bands, using a GROUP FOOTER band but when you extend these, the report is extended, loses it format amongst other things. I also tried using the SUMMARY band and whilst this does show after the last line of data shown in the DETAIL band, it is usually halfway up the page and again, causing havoc with the layout and does not show the full page of my last page.
As always some guidance would be very much appreciated.
Thank you
Lee
I have a question about the creation of a report form:
[ul]
[li]A report form has been created (myreport.frx)[/li]
[li]In the TITLE band are label and fields which only appear on page 1 of the report - Thats ok and what I need[/li]
[li]The PAGE HEADER band also contains label and fields which appear on subsequent pages which are > 1 - That's also what I need[/li]
[li]In the DETAILS band is a couple of fields, one of which is memo field (set to stretch as appropriate) which appear on all pages - Thats ok too[/li]
[li]The PAGE FOOTER band also contains a couple of labels and fields which appear on every page as you would expect[/li]
[/ul]
Now, what I can't figure out is how to add text and fields from a full page that I want to show as a last page. So what I mean by this is:
My report prints out correctly, showing title band, page headers (if more than one page), the details from the memos fields in the details band and the page footer information.
I have a full page of certain fields and text which are from the Parent table that are fixed and I want these to be part of the complete report. I can run the reports I have created independently such as:
Code:
REPORT FORM myreport PREVIEW FOR (Condition etc)
REPORT FORM mylastpage PREVIEW FOR (Condition etc)
but ideally I would want these to be one entity instead of two.
Causing two REPORT FORM statements is ok if you just want to "Straight forward" print out documents and thats fine but I want to save the report in certain formats and I have found foxypreviewer which works an absolute treat and converts the reports into pdf's, rtf's with ease.
So with this in mind, how can I add that last page to my report?
I have tried adding additional DETAIL bands, using a GROUP FOOTER band but when you extend these, the report is extended, loses it format amongst other things. I also tried using the SUMMARY band and whilst this does show after the last line of data shown in the DETAIL band, it is usually halfway up the page and again, causing havoc with the layout and does not show the full page of my last page.
As always some guidance would be very much appreciated.
Thank you
Lee