D
Dominic Vella
Hi
Has anyone tried to create a query that can cumulate numbers,
eg if 'table1' contained the following
Jan-2008, 7
Feb-2008, 3
Mar-2008, 5
Apr-2008, 1
I would like a query to come up with a result like this:
Jan-2008, 7
Feb-2008, 10
Mar-2008, 15
Apr-2008, 16
I can do it by creating have a query with the same table shown twice,
without a link, and then testing if table_1.date =< table.date then sum the
values
but I feel this is over processing the data.
Can anyone provide a better way to get this result?
tnx
Dom
Has anyone tried to create a query that can cumulate numbers,
eg if 'table1' contained the following
Jan-2008, 7
Feb-2008, 3
Mar-2008, 5
Apr-2008, 1
I would like a query to come up with a result like this:
Jan-2008, 7
Feb-2008, 10
Mar-2008, 15
Apr-2008, 16
I can do it by creating have a query with the same table shown twice,
without a link, and then testing if table_1.date =< table.date then sum the
values
but I feel this is over processing the data.
Can anyone provide a better way to get this result?
tnx
Dom