Running Sum

A

Andrew

Good Morning.

I have a report that lists individual transactions for an Item. The query
used to generate the report pulls from 3 tables. One Table has a quantity
field. Is there a way to place a lable or text box on the report that will
show line by line, for each entry the acumulated sum of [Quantity] ?
 
A

Allen Browne

Add a text box to the same section of the report, and give it these
properties:
Control Source =[Quantity]
Running Sum Over All
 
Top