Calculator in a Continous form

  • Thread starter Thread starter lilbit27
  • Start date Start date
L

lilbit27

Is there a way to create a calculator on a coninous form?

I have three amounts gross, commisson, and net. not based on what
they select I want to create a running total.

So say the checks (checkbox) line 1,2,3 or 1,5,7,9,11,1200. I want to
have a text box that would show the total of the items that they
selected and remove that item if they removed the check from the check
box.
 
yes it did thanks
Wayne-I-M said:
Hi

Not really sure what it is you are looking for so you could place an unbound
text box in the form's footer or header and use something like this is as the
control source

= Sum ( IIf ([CheckBox]=-1, [FieldName])
or
= Count ( IIf ([CheckBox]=-1, [FieldName])
etc

Hope this helps

--
Wayne
Manchester, England.



lilbit27 said:
Is there a way to create a calculator on a coninous form?

I have three amounts gross, commisson, and net. not based on what
they select I want to create a running total.

So say the checks (checkbox) line 1,2,3 or 1,5,7,9,11,1200. I want to
have a text box that would show the total of the items that they
selected and remove that item if they removed the check from the check
box.
 

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

Back
Top