I am trying to plot a cumulative sum over time (Access Chart - Line graph), but cannot figure it out. I've seen the question posted by others on different forums - but have never seen an answer.
I'll simplify what I am trying to do in order to focus on the problem.
I am using Access 2002 and the data is stored in MS SQL
I have sales numbers by day (the sale amount for each transaction and the date of the transaction). If I sum by day I get something like:
Sept 20 $1000
Sept 21 $1500
Sept 22 $500
Sept 23 $900
I want to plot
Sept 20 $1000
Sept 21 $2500 (1000+1500)
Sept 22 $3000 (1000+1500+500)
Sept 23 $3900 (1000+1500+500+900)
I'm not sure if the calculation should be done in a query and then a chart/graph report done on the query, or if there is a way to do it directly on the chart/graph.
Does anyone know how to do this?
I'll simplify what I am trying to do in order to focus on the problem.
I am using Access 2002 and the data is stored in MS SQL
I have sales numbers by day (the sale amount for each transaction and the date of the transaction). If I sum by day I get something like:
Sept 20 $1000
Sept 21 $1500
Sept 22 $500
Sept 23 $900
I want to plot
Sept 20 $1000
Sept 21 $2500 (1000+1500)
Sept 22 $3000 (1000+1500+500)
Sept 23 $3900 (1000+1500+500+900)
I'm not sure if the calculation should be done in a query and then a chart/graph report done on the query, or if there is a way to do it directly on the chart/graph.
Does anyone know how to do this?