The reason for this is that Access evaluates True as -1 and False as 0. As
Jon suggested, wrap the answer in the ABS(), absolute value, function.
A couple of things to consider, can the item be Accepted or Recjected but
not Neither or Both? If so, you may only need one checkbox. Set it whichever
way you want, but use one value for Accepted and one for Rejected (i.e.
checked would be Accepted and unchecked would be Rejected). If Neither is
also a possibility, you could still use a single check box in "triple state"
mode. A triple state check box will give you the options of True, False, and
Null. You would use Null for neither Accepted nor Rejected.
--
Wayne Morgan
MS Access MVP
Bailey said:
I have a form using a checkbox for Accept and a checkbox for Reject. I am
now making a query where I want to sum the amount of accepts and the amount
of rejects. When I sum the column the numbers are in negative state
e.g. -14, how can I change them to positive numbers?