Without any further information.........
Something along the lines of:
Code:
SELECT DatePart("yyyy", [YourDateField]), Sum([YourMoneyField])
FROM YourTable
GROUP BY DatePart("yyyy", [YourDateField])
would give you the yearly totals.
Something like:
Code:
SELECT DatePart("yyyy", [YourDateField]), DatePart("m", [YourDateField]), Sum([YourMoneyField])
FROM YourTable
GROUP BY DatePart("yyyy", [YourDateField]), DatePart("m", [YourDateField])
would give you the totals for each month
a little more info on where you'd like this shown (Form/Report/Query etc), would probably be helpful
I am a loud man with a very large hat. This means I am in charge