‎03-12-2013 03:10 PM
Select Top 1000000 tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.AssetID,
tblAssets.AssetName As [Device Name],
tblAssetCustom.Location As [Device Location],
tblAssets.IPAddress As [IP Address],
tblAssetCustom.Custom8 As [Switch Location],
tblAssetCustom.Custom9 As [PatchPanel ID],
tblAssetCustom.Custom10 As [Switch ID]
From tblAssets
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Left Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Where tblAssetCustom.Custom9 Like '111%'
Order By tblAssetCustom.Custom10
Solved! Go to Solution.
‎03-13-2013 09:58 AM
‎03-19-2014 05:50 PM
‎03-20-2014 11:01 AM
dsnyrs wrote:
Is there a way to hyperlink
tblAssetCustom.DNSName
‎03-13-2013 02:48 PM
‎03-13-2013 02:50 PM
Lansweeper wrote:
You need to add tblAssets.AssetID like you did in your previous report.
‎03-13-2013 09:58 AM
‎03-13-2013 02:47 PM
Lansweeper wrote:
You need to remove the alias assigned to tblAssets.AssetName.
Select Top 1000000 tblAssets.AssetName,
tblAssetCustom.Custom7,
tblAssetCustom.Custom8,
tblAssetCustom.Custom9,
tblAssetCustom.Custom10,
tblAssetCustom.Custom11,
tblAssets.Description
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Where tblAssetCustom.Custom7 Like '%:%'
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now