You have to use the source of the field on the report.
If you get your total for Jan by setting the source of the field to
Sum([jan]), your total for Feb by setting source to Sum([feb]), etc... then
in your sumof source you would need to put: Sum([jan]) + Sum([feb]) + etc...
Kind of hard to explain this process...sorry
Hope this helps
Katrina
To my understanding, you thus have 14 textboxes in the footer section; one
for the account info, 12 for the months, and 1 for total amount.
Your Jan textbox, keeping what Duane said in mind, should have as a Control
Source the formula =Sum(Nz([jan],0)). the other months will follow in
identical fashion. the "All" though, will be a bit different. The Control
Source will have to have the formula =Sum(Sum(Nz([jan],0)) + Sum(Nz([feb],0))
+ Sum(Nz([mar],0)) + Sum(Nz([apr],0)) + Sum(Nz([may],0)) + Sum(Nz([jun],0)) +
Sum(Nz([jul],0)) etc. etc. )
HTH
>You have to use the source of the field on the report.
>If you get your total for Jan by setting the source of the field to
[quoted text clipped - 10 lines]
>>
>> I am sure it is a simple solution...please help:)

Signature
Sam