query showing - number and + total

  • Thread starter Thread starter Kim T
  • Start date Start date
K

Kim T

I have a query that ask 3 yes/no questions with several per day when I pull q
query for 1 month period the count shows negative sign then the number total
of calls per day show correct with no negative or positive sign. How do I get
rid of the negative sign. need help please
Query:
Date (Group by)
MedRefill (Sum criteria yes)
Illness (Sum criteria yes)
Test (Sum criteria yes)
Count of main:Count(*) expression
 
Checkboxes use a -1 for yes and a 0 for no. You would probably need to set up
a separate field that uses IIF([yourcheckboxfield]=-1,"Yes","no")
 
Back
Top