I am trying to create a set of charts with access data that capture a running total of milestone completions. The table structure is as such:
Due Date
Milestone
etc…
I need to structure the data for charting that shows a running total of milestones due on or before each month. I have tried inserting the following:
select count(milestone) from table1 nn where nn.due date <=table1.due date, but I get a syntax error.
If there is an easier way work with cumulative data, please let me know!