G
Guest
I have successfully entered the following, based on posts in this group, to
correctly report the total number of checked boxes in several columns from a
table:
Textbox1 =Abs(Sum([CheckBoxField1]))
Textbox2 =Abs(Sum([CheckBoxField2]))
Textbox3 =Abs(Sum([CheckBoxField3]))
....
My problem is that this creates the report 120 times, for each record in the
record source table. I tried creating an unbound report, and rewriting the
expression as:
=Abs(Sum(
![CheckBoxField1]))
but that just gives me an #Error for all the textboxes on the report. i
must be overlooking something simple, but i'm stuck.
I was able to do it by creating a query that totaled the sums, but i need to
be able to write a percentage over all the records, and that seems to rule
out pulling in the total number of records to use as the percentage
denominator.
tia,
correctly report the total number of checked boxes in several columns from a
table:
Textbox1 =Abs(Sum([CheckBoxField1]))
Textbox2 =Abs(Sum([CheckBoxField2]))
Textbox3 =Abs(Sum([CheckBoxField3]))
....
My problem is that this creates the report 120 times, for each record in the
record source table. I tried creating an unbound report, and rewriting the
expression as:
=Abs(Sum(
but that just gives me an #Error for all the textboxes on the report. i
must be overlooking something simple, but i'm stuck.
I was able to do it by creating a query that totaled the sums, but i need to
be able to write a percentage over all the records, and that seems to rule
out pulling in the total number of records to use as the percentage
denominator.
tia,