Thanks for that information.
I thought it would be possible, as I've already using the below report scripts been able to pull basic reports out on assets with the dynamic state 'Active', and assets with the dynamic state 'Non-active'.
Active:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.State = 1
Non-active:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssetCustom.State = 2
Where all I've changed is the number within the line 'Where tblAssetCustom.State = Number'. With 1 being for Active assets and 2 being for Non-Active assets. I'd assumed any other dynamic groups would also have a number but that doesn't seem to work for 2x other dynamic asset groups I've setup called 'Recycled' and 'Returned to Supplier'.
Looking at the options with the 'Assets' tab in Lansweeper I've also noticed the sub header of 'Asset States'.
Would anyone know if you can report off 'Asset States' if there is no way to report from dynamic groups so well?
Thanks,
Rob