Castaway
02-28-2001, 11:30 AM
How do you count the checkboxes that are only checked, not including the ones that are not checked. And be able to count them in your report.
Thanks
Thanks
|
View Full Version : Checkboxes Castaway 02-28-2001, 11:30 AM How do you count the checkboxes that are only checked, not including the ones that are not checked. And be able to count them in your report. Thanks llkhoutx 02-28-2001, 11:56 AM Checkbox have a value -1 and 0, therefore use the following in as the source of textbox in a footer: =sum(abs(checkboxName)). |