Create a running total

  • Thread starter Thread starter dd
  • Start date Start date
D

dd

I would like to create a running total on a form. The
user selects check boxes next to amounts and it would be
helpful to see at total on the items selected in the check
box. Thanks,
DD
 
-----Original Message-----
I would like to create a running total on a form. The
user selects check boxes next to amounts on a form it
would be helpful to see at total on the items selected in
the check
 
dd said:
I would like to create a running total on a form. The
user selects check boxes next to amounts and it would be
helpful to see at total on the items selected in the check
box.


A running total in a form is pretty messy.

If you only want a total in the form's footer, then it is
easy:
=Sum(IIf(checkboxfield, amount, 0))
 
Back
Top