Select tblADComputers.OU, tblSoftware.softwareName, tblSoftware.SoftwarePublisher, tblSoftware.softwareVersion, Count(tblSoftware.SoftwareID) As Total From tblComputers Left Join tblADComputers On tblComputers.Computername = tblADComputers.Computername Inner Join tblSoftware On tblComputers.Computername = tblSoftware.ComputerName Group By tblADComputers.OU, tblSoftware.softwareName, tblSoftware.SoftwarePublisher, tblSoftware.softwareVersion Order By tblADComputers.OU, tblSoftware.softwareName, tblSoftware.SoftwarePublisher, tblSoftware.softwareVersion
That report worked perfect for what I was looking for at the time. Thanks.
I was wondering if I can make seperate reports for each OU to give the total software. I'm trying to do a count on total amount of software for each OU.
mattgbarnes wrote: That report worked perfect for what I was looking for at the time. Thanks.
I was wondering if I can make seperate reports for each OU to give the total software. I'm trying to do a count on total amount of software for each OU.
For software counts of a specific OU, please use the report below. Replace "YourOU" with the OU you want to report on.
Select tblSoftware.softwareName, tblSoftware.SoftwarePublisher, tblSoftware.softwareVersion, Count(tblSoftware.SoftwareID) As Total From tblComputers Left Join tblADComputers On tblComputers.Computername = tblADComputers.Computername Inner Join tblSoftware On tblComputers.Computername = tblSoftware.ComputerName Group By tblADComputers.OU, tblSoftware.softwareName, tblSoftware.SoftwarePublisher, tblSoftware.softwareVersion Having tblADComputers.OU = 'YourOU' Order By tblADComputers.OU, tblSoftware.softwareName, tblSoftware.SoftwarePublisher, tblSoftware.softwareVersion
Select tblADComputers.OU, tblSoftware.softwareName, tblSoftware.SoftwarePublisher, tblSoftware.softwareVersion, Count(tblSoftware.SoftwareID) As Total From tblComputers Left Join tblADComputers On tblComputers.Computername = tblADComputers.Computername Inner Join tblSoftware On tblComputers.Computername = tblSoftware.ComputerName Group By tblADComputers.OU, tblSoftware.softwareName, tblSoftware.SoftwarePublisher, tblSoftware.softwareVersion Order By tblADComputers.OU, tblSoftware.softwareName, tblSoftware.SoftwarePublisher, tblSoftware.softwareVersion
I'm in a tight spot with limited time to finish my research paper. I found a solution online at https://studyclerk.com/pay-for-research-paper website. This is a great help because it lets me pick the right writer for my paper, and they're really good at meeting deadlines.
Reports & Analytics
Ask about reports you're interested in and share reports you've created. Subscribe to receive daily updates of reports shared in the Community.