inline SUM to accumulate values

edited 9:23PM in FastReport 3.0
I need to accumulate a value inline. Example:

number: value (accumulated value)
1: 10 (10)
2: 15 (25)
3: 5 (30)

the fields: number and value are placed on a DetailDataBand1 with DetailData1.
When placing [SUM(<value>, DetailData1)] for the accumulated value on the DatailDataBand, nothing is displayed.

How to solve?

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 9:23PM
    typically
    at the beginning of report script page declare var of required type.
    ie
    var
    myaccumvar: integer;
    this creates a variable which is globall to all report events.

    in obp event of masterband initialize to 0
    myaccumvar := 0;

    in obp of detailband or obp event of memo
    myaccumvar := myaccumvar + whatever;

    in memo use [myaccumvar] for display.
    ;)
  • edited 9:23PM
    I need a group total on each line, to calc a percent of group total for each line. how can I do this? If I use the SUM() function it is blank.

Leave a Comment