How can I create a report that will link to another report?
What I am looking for is a count of all software installed like Microsoft Office (I have that part done), and have the name of the software link to a list of all the computers that have that software installed.
Here is my query (it shows the counts just fine, but no links).
Select Top 1000000 tblSoftware.softwareName As Software, Count(Distinct tblComputers.Computername) As number From tblComputers Left Join tblSoftware On tblComputers.Computername = tblSoftware.ComputerName Where tblSoftware.softwareName Like 'Microsoft Office%' Group By tblSoftware.softwareName Order By tblSoftware.softwareName
Thanks.
Eric