-----Original Message-----
Hi Steve.
I just made sure.
if in your detail of your report you have a checkbox
named "Sicknesschk" tah you can put another textbox in the
report footer or group footer with "=Abs(Sum (Sicknesschk))"
and you will get the desired result.
Make sure you have that textbox (I guess you named it
Text2) in either the group header or footer or the report
footer.
Hope this helps.
Fons
-----Original Message-----
Hmmmm,
On the report, I have a Checkbox called Sicknesschk, bound
to the Field Sickness.
I am attempting to show the total number of 'checks' in
Text2 with the Control Source of =Abs(Sum(Sicknesschk))
Is this correct? I am still getting #Error in Text2 !!!!
I may go to the long-winded 'coded' way if this doesnt
work soon!
Cheers,
Steve.
-----Original Message-----
Hi Steve.
I think you have named the textbox the same as the data
element in your table/query. rename the textbox and make
sure that the formula is still correct. Sometimes the
autocorrect makes some changes.
Hope this resolves the issue.
Fons
-----Original Message-----
Fons,
I have tried that but I get #Error :/
Is there another function that can be used?
Cheers,
Steve
-----Original Message-----
What you are seeing is truly the sum sunce each yes is
saved as a minus 1.
To count the yesses, use Sum(Abs([Sickness]))
Hope this helps.
Fons
-----Original Message-----
Hi,
I have a report that displays rows from a query, one of
which is a checkbox.
I want a total for checkbox's that have been checked,
but
cant work out how its done.
I've tried =sum(Sickness) and =count(Sickness) or I
just
get the results of -2 for sum() and 3 for count().
There
are 3 records but only 2 checked boxes!
Can anyone help?
Cheers,
Steve.
.
.
.
.
.
.