|
-
Jan 9th, 2005, 12:08 AM
#1
Thread Starter
Hyperactive Member
[Resolved] Running Total Field
Hi ,all
How to create a running total field for each page of paper?
I mean how to create a running total field that will
reset a value when a page is changed.
I have try to find out in Crystal Help, google but i havent found any thread.
Any ideas?
Thanks for advance
Last edited by naruponk; Feb 21st, 2005 at 12:34 AM.
-
Jan 17th, 2005, 05:36 AM
#2
New Member
Re: Running Total Field
Hi,
You have to use three formulae
Formula1 : @Reset having the code
Numbervar x:=0;
whilePrintingRecords;
x:=0
Formula2 : @Sum having the code
Numbervar x;
whilePrintingRecords;
x:=x+{Database filed};
Formula3 : @Display having the code
Numbervar x;
whilePrintingRecords;
x;
Insert Formula1 in Page Header 2 in details and 3 in PageFooter
Suppress Formula1 and 2
Madhivanan
Last edited by Madhivanan; Jan 17th, 2005 at 05:40 AM.
-
Jan 19th, 2005, 09:48 PM
#3
Thread Starter
Hyperactive Member
Re: Running Total Field
Thanks Madhivanan
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|