
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-25-2011 08:03 PM
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).
Thanks.
Eric
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
Solved! Go to Solution.
Labels:
- Labels:
-
Report Center
1 ACCEPTED SOLUTION

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2011 09:56 AM
You need to add "Version" and it will automatically hotlink.
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2011 06:04 PM
Very Nice, Thank you!

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-09-2011 03:45 PM
someone requested this so... here is my report query for Office Versions with links.
Let me know if anyone has improvements.
Eric
Select Top 1000000 tblSoftware.softwareName As Software, Count(Distinct tblComputers.Computername) As number, tblSoftware.softwareVersion As Version From tblComputers Left Join tblSoftware On tblComputers.Computername = tblSoftware.ComputerName Where tblSoftware.softwareName Like 'Microsoft Office%' Group By tblSoftware.softwareName, tblSoftware.softwareVersion Order By tblSoftware.softwareName
Let me know if anyone has improvements.
Eric

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-06-2011 03:23 PM
Thank you, that worked perfectly. Is there a section in the documentation or forums with information on how some of the reporting works? For example, by simply adding the "Version" in a report it will automatically link, etc.
thanks again for the help!
Eric
thanks again for the help!
Eric

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-23-2011 01:40 PM
ejensen wrote:
Is there a section in the documentation or forums with information on how some of the reporting works?
Please refer to page 29 of our online documentation for more info on creating custom reports. Our online documentation can be found here.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2011 09:56 AM
You need to add "Version" and it will automatically hotlink.
