→ The Lansweeper Customer Excellence Awards 2024 - Submit Your Project Now! Learn More & Enter Here

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
MikeInLa
Champion Sweeper
I need to pull a report on printers with the following criteria:

AssetName
IP
Model
Serial

Can someone help me with the proper code to produce this report? I would very much appreciate any help. Thanks 🙂
2 REPLIES 2
MikeInLa
Champion Sweeper
that's perfect! Thanks!
🙂
cdonizetti
Engaged Sweeper III
Hi,

try this :

Select Top 1000000 tblAssets.AssetName,
tblAssets.IPAddress,
tblAssetCustom.Manufacturer,
tblAssetCustom.Model,
tblAssetCustom.Serialnumber,
tsysAssetTypes.AssetTypeIcon10 As icon
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tblAssets.Assettype = tsysAssetTypes.AssetType
Where tblAssets.Assettype = 16 And tblAssetCustom.State = 1