Setting | Description | Visual Basic |
No | (Default) The text box displays the data from the underlying field for the current record. | 0 |
Over Group | The text box displays a running sum of values in the same group level. The value accumulates until another group level section is encountered. | 1 |
Over All | The text box displays a running sum of values in the same group level. The value accumulates until the end of the report. | 2 |
=Sum([Sales])
The RunningSum property of each text box is set to one of the three different values: No, Over Group, and Over All.
Group levels | No | Over Group | Over All |
Month: January | |||
Type of Food: Chocolates | |||
02-Jan | 25 | ||
22-Jan | 75 | ||
January Chocolates | 100 | Jan Food 100 | YTD Sales 100 |
Type of Food: Meat | |||
03-Jan | 90 | ||
20-Jan | 60 | ||
January Meat | 150 | Jan Food 250 | YTD Sales 250 |
Month: February | |||
Type of Food: Chocolates | |||
05-Feb | 70 | ||
19-Feb | 80 | ||
February Chocolates | 150 | Feb Food 150 | YTD Sales 400 |
Type of Food: Meat | |||
12-Feb | 150 | ||
22-Feb | 100 | ||
February Meat | 250 | Feb Food 400 | YTD Sales 650 |
Reports!rptSales!SalesTotal.RunningSum = 2