Mar 5, 2002 #1 Engiman Programmer Mar 5, 2002 5 RU In page footers of a tabular report there must be printed sums of the pages records. How it can be done in Crystal Report v. 8.x ? Thanks
In page footers of a tabular report there must be printed sums of the pages records. How it can be done in Crystal Report v. 8.x ? Thanks
Mar 6, 2002 #2 Hattusas Programmer Nov 11, 2001 344 TR Insert summary field into group footer. Salih Sipahi Software Engineer. City of Istanbul Turkey openyourmind77@yahoo.com Upvote 0 Downvote
Insert summary field into group footer. Salih Sipahi Software Engineer. City of Istanbul Turkey openyourmind77@yahoo.com
Mar 6, 2002 Thread starter #3 Engiman Programmer Mar 5, 2002 5 RU Well, that didn't work. There's no groups in the report. Upvote 0 Downvote
Mar 6, 2002 1 #4 dgillz Instructor Mar 2, 2001 10,043 US Do you want a page total at the bottom of each page? If so use variables and the 3 formula technique, see the FAQ section for a very good FAQ regarding this. Software Support for Macola, Crystal Reports and Goldmine dgillz@juno.com Upvote 0 Downvote
Do you want a page total at the bottom of each page? If so use variables and the 3 formula technique, see the FAQ section for a very good FAQ regarding this. Software Support for Macola, Crystal Reports and Goldmine dgillz@juno.com
Mar 7, 2002 Thread starter #5 Engiman Programmer Mar 5, 2002 5 RU Thank you, dgillz Your suggestion was very helpfull. I solved the problem like this Step 1: Create a running total {#rtt_total} for the required report field Step 2: Create a formula field {@page_total} 'page_total formula field global page_total as number local rtt_value as number call EvaluateAfter({#rtt_total}) rtt_value={#rtt_total} formula=rtt_value-page_total page_total=rtt_value Step 3: Place the formula field in the page footer section Upvote 0 Downvote
Thank you, dgillz Your suggestion was very helpfull. I solved the problem like this Step 1: Create a running total {#rtt_total} for the required report field Step 2: Create a formula field {@page_total} 'page_total formula field global page_total as number local rtt_value as number call EvaluateAfter({#rtt_total}) rtt_value={#rtt_total} formula=rtt_value-page_total page_total=rtt_value Step 3: Place the formula field in the page footer section