Totals not working

C

cp2599

I have a yearly report whose detail contains monthly summations from
the database (=DSUM...). The report footer contains a total by
summing all the individual monthly summations
(=intTot1+intTot2+intTot3 ... +intTot12). The DSUM is working;
however, the total in the footer is not. Any suggestions on what I'm
doing wrong?

The detail and total fields are defined as General Number on the
report.
 
D

Duane Hookom

Typically reports are bound to queries/tables so you can create sums and
other aggregates in header and footer sections. DSum() and other domain
aggregate functions should be avoided if possible.

Can you tell us something about your report and why you think you need to
use DSum()s rather than summing values from a Record Source?
 
C

cp2599

I have a spreadsheet of statistics (15 x 12) each cell having a
different set of criteria to create a total.
 
D

Duane Hookom

Access isn't a spreadsheet. It's a relational database. Access has fields and
records, not cells.

You haven't really answered my question:
 

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

Similar Threads


Top