Hi all,I am trying to get a list of users with a count of how much work they have attached to them at the moment. The problem I am getting is when there is a new employee he has no work attached and is not being returned in the Results?Here is what I haveSelect P.[User] as Employee, E.Department as Dept, Count(qryAllocUser) From ProActiveUser PJoin Employees E ON E.Logon_Name = P.[User]Left Outer Join Queries Q ON Q.qryAllocUser = P.[User]Where E.Active = 1 AND qryNo LIKE 'CPR%' And Not Q.qryStatus in ('Resolved', 'Finalised') Group By P.[User], E.DepartmentOrder by Count(qryAllocUser)The users are stored in ProActiveUser and there work is stored in Queries. All the employees info is stored in Employees.If I comment out the requirement to look in the queries table then I get a list of the employees and a count that is correct. THe problem is I need to get a list of the employees specific to these requirements?Thanks,Gavin