I am attempting to build a paredo chart and when I run my query I get the resulsts EXCEPT I am getting a blank value (Level1) with a Total of 0. Why do I keep getting a second value of nothing?
Any help would be great Thanks!!
Here is the code from the SQLView
SELECT tblcomments.Level1, Count(tblcomments.Level1) AS [Level1 Totals]
FROM tblcomments
WHERE (((tblcomments.Level1)<>"") AND ((tblcomments.Dept)="362")) OR (((tblcomments.Dept)="363")) OR (((tblcomments.Dept)="365"))
GROUP BY tblcomments.Level1;
Any help would be great Thanks!!
Here is the code from the SQLView
SELECT tblcomments.Level1, Count(tblcomments.Level1) AS [Level1 Totals]
FROM tblcomments
WHERE (((tblcomments.Level1)<>"") AND ((tblcomments.Dept)="362")) OR (((tblcomments.Dept)="363")) OR (((tblcomments.Dept)="365"))
GROUP BY tblcomments.Level1;