→ 🚀Are you a Lansweeper Champion?! Join our Contributor Program Sign up here!

Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
pfrench1
Engaged Sweeper III
Has anyone successfully created a report that includes whether or not an asset is active or inactive?

Thanks in advance.
1 ACCEPTED SOLUTION
RCorbeil
Honored Sweeper II
The default query explicitly filters for active (state = 1). If you want to filter for a different state, change that value.

State value definitions are found in tblState.
Select Top 1000000
tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblstate.State,
tblstate.Statename
From
tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblstate On tblstate.State = tblAssetCustom.State

View solution in original post

1 REPLY 1
RCorbeil
Honored Sweeper II
The default query explicitly filters for active (state = 1). If you want to filter for a different state, change that value.

State value definitions are found in tblState.
Select Top 1000000
tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblstate.State,
tblstate.Statename
From
tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblstate On tblstate.State = tblAssetCustom.State

Reports & Analytics

Ask about reports you're interested in and share reports you've created. Subscribe to receive daily updates of reports shared in the Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now