Hello, I have this report:
SELECT DISTINCT
dbo.tblSoftware.softwareName AS Software,
dbo.tblSoftware.ComputerName,
dbo.tblSoftware.Installdate,
dbo.tblSoftware.Lastchanged,
dbo.tblSoftware.softwareVersion,
tblComputers.LastknownIP,
tblCompCustom.Department
FROM
dbo.tblSoftware
INNER JOIN tblComputers ON (dbo.tblSoftware.ComputerName = tblComputers.Computername)
LEFT OUTER JOIN tblCompCustom ON (dbo.tblSoftware.ComputerName = tblCompCustom.Computername)
WHERE
dbo.tblSoftware.softwareName = 'Symantec Antivirus'
I would like to show how many each department I have Installed, something like the predefined "All installed Software"
Instead of the total of how many per software I would like how many per department.
This would be a secondary report to the original report attached where it would say:
HR DEPT: 20
IT DEPT 40
FINANCE: 50
etc...
It would be great if somehow it would show how many computers that dont have the symantec AV installed per dept as well.
Regards and many thanks.