Running Total Question

  • Thread starter Thread starter Bob
  • Start date Start date
B

Bob

I have a Running Total next to each months Invoice total in a Sub Form, But
it only Calculates what Months I show on the form disregarding any totals
previous, Is it possible it can pick up previous total and add it in
Thanx for any Help ..............Bob







..........Jenny Vance
 
If you want to show a total of all records in the table, regardles of how
the form is filtered, use a DSum() expression to get the total from the
table.

The Control Source of the text box will be something like this:
=DSum("Amount", "Table1")

Or, if you need to limit it to the total for the client in the form, add
criteria as well. Perhaps:
=DSum("Amount", "Table1", "ClientID = " & Nz([ClientID],0))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top