Report Total

jimd1768

jimd1768
Local time
Today, 02:15
Joined
May 8, 2007
Messages
63
I have 3 columns in my Report:

AmountDue
AmountOutstanding
Total

I have put in a Sum for the first 2 columns but it won't let me do the same for the Total column.

I want to either have a total of the total column or add the totals of AmountDue + AmountOutstanding.

Thank you in advance. I am using Access 2007
 
Use the Expression Builder and in there look for the two controls. Set it as the control source for Total.

You would also need the Nz() function for AmountDue and AmountOutstanding. You wouldn't need it for Total because that's already handled above. Look that up.
 
Thank you for the response.

I forgot to mention, I am very new with Aceess and I don't fully understand what you mean with your reply (sorry).

If you could help me in more simple terms, I would be very grateful.

Thanks
 
Add an unbound textbox, set its control source to
=Sum([AmountDue]+[AmountOutstanding])
 
Remember the Nz if you're likely to have some blank fields.

=Sum(Nz([AmountDue], 0)+Nz([AmountOutstanding], 0))

Have a quick look in the Access Help files for an explanation.
 
Thank you.

I have added Nz() to my new book of Access notes.

Thanks for the assistance
 

Users who are viewing this thread

Back
Top Bottom