
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2012 04:57 PM
Where can I get some help on running custom reports thru the report builder.
Is there a manual or a place with some tutorials I can goto for help
I'm needing help with wildcards if this is possible to do.
I'm needing to know if you can use wildcards when setting up a report. Example: Adobe Acrobat has several versions. I'd like to use Adobe Acrobat * , or something similar so I can get all of adobe versions without having to list every version. This program is very touchy and if you have a space in the wrong place it won't show the info
Is there a manual or a place with some tutorials I can goto for help
I'm needing help with wildcards if this is possible to do.
I'm needing to know if you can use wildcards when setting up a report. Example: Adobe Acrobat has several versions. I'd like to use Adobe Acrobat * , or something similar so I can get all of adobe versions without having to list every version. This program is very touchy and if you have a space in the wrong place it won't show the info
Labels:
- Labels:
-
Archive
1 REPLY 1

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2012 05:06 PM
Page 82 of our online documentation provides an example on building custom reports.
Example report for Adobe Acrobat:
Example report for Adobe Acrobat:
Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblSoftware.softwareName, tblSoftware.softwareVersion,
tblSoftware.SoftwarePublisher, tblSoftware.Installdate,
tblSoftware.Lastchanged
From tblComputers Inner Join
tblSoftware On tblComputers.Computername = tblSoftware.ComputerName
Where tblSoftware.softwareName Like '%adobe acrobat%'
Order By tblComputers.ComputerUnique, tblSoftware.softwareName
