I don't really understand what you mean... please explain further
HI,
If you can make a running sum over a table named t1, then just change the
name, t1, by the crosstab query name.
To make a running sum over fields f1, and f2, over the increasing value of
field f3 (generally a date_time_stamp field, so the running sum will be the
"historical" running sum), you can do:
SELECT a.f3, SUM(b.f1), SUM(b.f2)
FROM myTable As a INNER JOIN myTable As b
ON a.f3 >= b.f3
GROUP BY a.f3
Hoping it may help,
Vanderghast, Access MVP
>I don't really understand what you mean... please explain further
>
[quoted text clipped - 16 lines]
>> > I
>> > make this work?