Create a running total

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
 
D

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
 
M

Marshall Barton

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))
 

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