I have figured it out, but it might be a bit rudimentary.
Select Top 1000000 tblAssets.AssetName,
tblAssetCustom.Location,
tblAssetCustom.AssetID,
tblAssets.Assettype,
tblAssetCustom.Custom12 As [Toshiba ID]
From tblAssetCustom
Inner Join tblAssets On tblAssets.AssetID = tblAssetCustom.AssetID
Where tblAssets.Assettype = 16 And tblAssetCustom.Custom12 <> ''
Order By tblAssetCustom.Location
I figured out by accident that the printer asset type is type #16. Is there a place where I can find a list of asset types so that I can do similar reports?
Thanks,
Jono