The database is monthly cost items for machine repairs. Fields are MachineID, Date, Hours, Parts, Labour, Fuel. There is a one-to-many relation using MachineID linking a “name” table with the “detail” table.
I have been able to construct a chart showing the Parts cost for each month. The chart redraws itself as I step between MachineID records on the form. My next steps are:
1) to show Cumulative Parts costs for each month
2) show Cumulative Parts costs versus Cumulative Hours, and
3) show Cumulative Parts+Labour+Fuel versus Cumulative Hours
Question: is the summation done in the underlying query, or is it done in the Chart itself? I don’t know how to calculate the cumulative values. If it was a report, then I would add a new “summation” control or use a Running Sum property. If it was Excel, I would add a new Summation column. But I am at a loss where to go with the Chart in Access.
Any help appreciated. Thx.