I am storing safety data in an Access dB and a few of the fields contain the selected state of checkboxes on my form in 'Yes/No' data types. When I perform a SQL query the values I recieve back, for say a SUM() function are all negative. I know that the default check state value is -1 but how do I change the sign to be displayed in my report? Here is the SQL statement:
VB Code:
  1. strSQL = "SELECT SUM([Manhours]) as SafeMonthly1,          SUM([First Aid]) as SafeMonthly2," _
  2.             & "       SUM([Medical Aid]) as SafeMonthly3,          SUM([Lost Time Accident]) as SafeMonthly4," _
  3.             & "       SUM([Fatal Accident]) as SafeMonthly5,       SUM([Unusual Occurrences]) as SafeMonthly6," _
  4.             & "       SUM([Fire]) as SafeMonthly7,                 SUM([Damage]) as SafeMonthly8," _
  5.             & "       SUM([Process]) as SafeMonthly9,              SUM([Environment]) as SafeMonthly10" _
  6.             & "       FROM Safety_Data WHERE [Date] >= #" & Month(Date) & "/01/" & Year(Date) & "#"
  7.             SafetyDailyRS.Open strSQL, Connection, adOpenKeyset, adLockPessimistic, adCmdText
  8.        
  9.             If Not SafetyDailyRS.EOF Then
  10.                 oXLSheet.Range("D9").Value = SafetyDailyRS.Fields("SafeMonthly1").Value
  11.                 oXLSheet.Range("D10").Value = SafetyDailyRS.Fields("SafeMonthly2").Value
  12.                 oXLSheet.Range("D11").Value = SafetyDailyRS.Fields("SafeMonthly3").Value
  13.                 .
  14.                 .
  15.                 .
  16.             End If
Fire, Damage, Process, and Environment are the checkboxes used to identify the type of Unusual Occurrence. When trying to display the value for the one record I only recieve 'FALSE' as my output, and for SUM() functions as above I get negative integers.

Any suggestions as to how to go about formatting this properly?