Mar 4, 2011 #1 swetham Programmer May 5, 2010 257 DE I have generate a report which is having weight column and i need the page total of weight in page footer. Can anyone please help me out? Thanks.
I have generate a report which is having weight column and i need the page total of weight in page footer. Can anyone please help me out? Thanks.
Mar 4, 2011 1 #2 lbass Technical User Feb 9, 2002 32,816 US Create three formulas: //{@reset} for the page header: whileprintingrecords; numbervar pgtot := 0; //{@accum} for the detail section: whileprintingrecords; numbervar pgtot := pgtot + {table.wgt}; //{@display} for the page footer: whileprintingrecords; numbervar pgtot; -LB Upvote 0 Downvote
Create three formulas: //{@reset} for the page header: whileprintingrecords; numbervar pgtot := 0; //{@accum} for the detail section: whileprintingrecords; numbervar pgtot := pgtot + {table.wgt}; //{@display} for the page footer: whileprintingrecords; numbervar pgtot; -LB
Mar 4, 2011 Thread starter #3 swetham Programmer May 5, 2010 257 DE Thank you so much. I got it. Upvote 0 Downvote