Quarter Total

J

JoeC

I have a database with dept, date, amount. I want to
create a report with the format

Dept Name Quarter Amount Database Total
DHR $5000.00 $1276500.00

Where the Database total with be the total for the dept.
from the whole table and on the same detail line. Please
help. Thanks.
 
M

Marshall Barton

JoeC said:
I have a database with dept, date, amount. I want to
create a report with the format

Dept Name Quarter Amount Database Total
DHR $5000.00 $1276500.00

Where the Database total with be the total for the dept.
from the whole table and on the same detail line.


Seems like an odd thing to do, but you can set the db total
text box to an expression like:

=DSum("amount", "thetable", "dept = """ & dept & """")
 

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

Top