I am counting closed help tickets and grouping them by the assigned technician from an issue tracking table using a make-table query. If a tech has no closed tickets, the table doesn't list him and I need the table to list all techs even if the total is zero. I tried using an IIF suggestion from another thread and it didn't work; I haven't figured out how to use Nz. The query SQL code is:
Thanks for your time.
MarjiS
Code:
SELECT dbo_Issues.AssignedTo, Count(dbo_Issues.SubmittedDate) AS CountOfSubmittedDate INTO TClosedAll
FROM dbo_Issues
WHERE (((dbo_Issues.ClosedDate) Is Not Null))
GROUP BY dbo_Issues.AssignedTo;
Thanks for your time.
MarjiS