summing query tutorials?

T

test guy

I need to write a query that will sum a number of fields, so that I can use
it in a report. Is there a decent tutorial somewhere that can help educate
me in this aspect? Thanks-
 
M

Michel Walsh

Hi,


Base the report in a query. In the query, make a computed expression like:

Nz(field1, 0) + Nz(field2, 0) + ...

To make a sum, vertically, it is much easier, just a

SUM( fieldName )




Hoping it may help,
Vanderghast, Access MVP
 

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