Over all total

J

jmm1954

I have report that has totals by truck for id wa and mt which works correctly
and then i have a grand total for id wa and mt. I have been trying to add all
the id all the wa and all the mt together. i have tried the id wa and mt
overall summing and i get a real funky number 183.00 when the id total alone
is 25000. Help!!!
 
M

Marshall Barton

jmm1954 said:
I have report that has totals by truck for id wa and mt which works correctly
and then i have a grand total for id wa and mt. I have been trying to add all
the id all the wa and all the mt together. i have tried the id wa and mt
overall summing and i get a real funky number 183.00 when the id total alone
is 25000. Help!!!


It's diffivult to figure out what ,ight be wrong without
knowing what you did to get the funky result.

Normally, if you use something like =Sum(ID) to get the
individual totals, then the overall total would simply be
like:
=Sum(ID) + Sum(WA) + Sum(MT)
 
J

jmm1954

i tested starting with id and i received the correct number for id and then i
added wa and was the correct number i added mt and no value returned i
switched out in a each field trying to figure it out they all add ok
seperately
 
M

Marshall Barton

That would happen if the MT field were Null in all of the
records. You can deal with that situation by using
Nz(Sum(MT), 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

Top