Hey,
I have a query:
Code:
SELECT "Prospecting Calls" AS VisitType, Abs(Count(VisitDate)) AS Monday
FROM VisitInfo
WHERE (((VisitInfo.VisitDate)=GetTraxDate()) AND ((VisitInfo.AddedBy)=GetUser()) AND ((VisitInfo.FormOfContact)=3))
GROUP BY "Prospecting Calls";
Where if there is a Count of 0 then it returns as Null. I would like to put this into a report where there are several similar queries, but if any of the Counts are 0 then I get a blank form. How do I get it to display 0???
Please Help!
Nick