Hi
Do you mean total as in "sum all records for field save and field edit" or "add field edit to field save"?
If it is the first option, the Access query builder produced this for me:
[tt]SELECT Statistics.Month, Sum(Statistics.SentTo) AS ST, Sum(Statistics.NotSentTo) AS NST, Sum(Statistics.NotHeld) AS NH, Sum(Statistics.ReceivedFrom) AS RF, Sum(Statistics.NotRecFrom) AS NRF
FROM Statistics
GROUP BY Statistics.Month;[tt]
I hope I have not completely misunderstood.