How to Query that will accumulate totals for each day of the Month (1 Viewer)

Gezza

Registered User.
Local time
Today, 14:02
Joined
Jun 19, 2009
Messages
53
Hi,
I need to write a query that will give me an accumulative total for each day of the month. Can this be done? I know it can be done in MSExcel so I assume it can be in Access, but I don't know how.

Gezza
 

John Big Booty

AWF VIP
Local time
Today, 14:02
Joined
Aug 29, 2005
Messages
8,262
Have a look at the Group BY or Totals query. Put you query into design view and click the Sigma (Σ) button in the tool bar. You will notice that a new row appears in the design view (Total:), this will allow you to do various functions in your query such as Group BY, Sum, Count etc.

You would want to Group By month and Sum whichever field it is you want the total of.
 

Gezza

Registered User.
Local time
Today, 14:02
Joined
Jun 19, 2009
Messages
53
You would want to Group By month and Sum whichever field it is you want the total of.[/quote]

Thanks for your reply,

Yes that gives me a total for the month, but what I am trying to do is have a running total for the month. eg
day One has 100, total as at day One = 100
day Two has 50 total as at day Two = 150
day Three has 150 total as at day Three = 300, and so on

Hope you can help
 

Gezza

Registered User.
Local time
Today, 14:02
Joined
Jun 19, 2009
Messages
53
Thank you,
I have had a play with DSum and have got it working fine

Gezza
 

Users who are viewing this thread

Top Bottom