Results 1 to 3 of 3

Thread: [Resolved] Running Total Field

  1. #1

    Thread Starter
    Hyperactive Member naruponk's Avatar
    Join Date
    Feb 2004
    Location
    Some where in the world
    Posts
    423

    Unhappy [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.

  2. #2
    New Member
    Join Date
    Jan 2005
    Posts
    4

    Thumbs up 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.

  3. #3

    Thread Starter
    Hyperactive Member naruponk's Avatar
    Join Date
    Feb 2004
    Location
    Some where in the world
    Posts
    423

    Smile 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
  •  



Click Here to Expand Forum to Full Width