cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
MahleTech
Engaged Sweeper
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
1 REPLY 1
Hemoco
Lansweeper Alumni
Page 82 of our online documentation provides an example on building custom reports.

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