My second time

Now I was able to preview my first FR. it nice n simple. my second question is how-to this part.

In my database I have a column named "Total Cost". I was able to sum this column "Total Cost" in every page using page footer band. my question is how can i have an accumulative summary for column "Total Cost"?

if my first page have summary of column "Total Cost" is 500 and second page 300 and adding the total of first page that is 500 so the summary of second page should be 800. could this be possible?

thank you

Comments

  • SamuraySamuray Administrator
    edited 8:28AM
    In ReportTitle OnBeforePrint script write:

    begin
    mysum := 0
    end

    In maserdata Memo OnBefore script write:
    begin
    mysum := mysum + [Total Cost];
    end

    In PageFooter Memo write:
    [mysum]
  • edited 8:28AM
    Thank you very much now it is working.

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.