Mar 5, 2002 #1 Engiman Programmer Joined Mar 5, 2002 Messages 5 Location 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 Joined Nov 11, 2001 Messages 344 Location 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 Joined Mar 5, 2002 Messages 5 Location RU Well, that didn't work. There's no groups in the report. Upvote 0 Downvote
Mar 6, 2002 1 #4 dgillz Instructor Joined Mar 2, 2001 Messages 10,059 Location 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 Joined Mar 5, 2002 Messages 5 Location 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