Check Boxes Sum on Forms

T

TAWise

Is there some way to show the Total of check boxes selected on a form in real
time rather than having to close the form and then re-open it?
For example,
 
K

Klatuu

Call the function in the After Update event of each check box. Add a line of
code to assign the value to the text box where you want to display the total:

CheckTotals = lngSumTot
Me.txtTotalChecked = lngSumTot
End Functioin
 

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