Jalz Posted August 8, 2006 Posted August 8, 2006 Hi Guys, Have any of you got a slick method of printing data out in the footer of the last page in the report. I have for example a 3 page orderlines report, and on the final page, I want to place some text & a total in the footer - what I need is "Final Footer" part in the report which does exactly what Title Footer does but at the end of the report. Thanks
Inky Phil Posted August 8, 2006 Posted August 8, 2006 I believe a trailing Grand summary layout part might do what you want Phil
Jalz Posted August 8, 2006 Author Posted August 8, 2006 Hi Phil, I've tried this, although this does print on the last page, it doesn't print at the bottom of the page. It only prints at the end of the last record, and I may only have one line on page 3 displaying - and my totals box floating towards the top. The only solution to this is, in my opinion is to create another layout just for the last page, but its so messy.
comment Posted August 8, 2006 Posted August 8, 2006 You cannot have a conditional footer - but you CAN have conditional data in the footer. Define an unstored calculation field (result is text) = Case ( Get ( RecordNumber ) = Get ( FoundCount ) ; "whatever you want" ) and place this field in the footer. Note that the footer must be high enough to accomodate this data, and this will of course affect all pages - not just the last one.
Jalz Posted August 8, 2006 Author Posted August 8, 2006 Thanks Comment, That did the trick. I hope in the next version of FM, they improve the reporting capabilities. Jalz
sal88 Posted September 15, 2006 Posted September 15, 2006 Or, to possibly save making new fields, and to be able to have graphics on the footer, eg seperating lines for total/sub total etc: Create 2 global container fields, placing a blank white image in one of them and leaving the other empty. Then create a calculation field like comment said, but with the instance of it being the last page showing the 'transparent' field otherwise show the 'white image' field. Then simply place this calculation field over whatever you place in the footer part, and what is beneath it will only show on the last page.
Newbies kanedsista Posted April 27, 2007 Newbies Posted April 27, 2007 Case ( Get ( RecordNumber ) = Get ( FoundCount ) ; "whatever you want" ) Is that the exact calc you need to use (apart from inside the "")? Coz I can't get it to work.
Recommended Posts
This topic is 6421 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now