G
Guest
Hello -
I have a subreport based on the following query:
SELECT CallType, Count(*) AS NumOf
FROM qryOne
GROUP BY [CallType];
I need it to return all CallType categories and if they're zero, indicate a
zero next to the category name. Currently, it is just returning categories
that are greater than zero. I tried putting a "Where CallType >= 0" before
the Group By but I get an error message saying it is too complex.
Any suggestions on how to accomplish this will be appreciated!
I have a subreport based on the following query:
SELECT CallType, Count(*) AS NumOf
FROM qryOne
GROUP BY [CallType];
I need it to return all CallType categories and if they're zero, indicate a
zero next to the category name. Currently, it is just returning categories
that are greater than zero. I tried putting a "Where CallType >= 0" before
the Group By but I get an error message saying it is too complex.
Any suggestions on how to accomplish this will be appreciated!