Thanks. I think you double-pasted the report. I think it's supposed to be the following:
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblSNMPInfo.IfIndex,
tblSNMPInfo.IfDescription,
tblAssets1.AssetName As [connected asset],
tblSNMPAssetMac.LastSeen
From tblAssets
Inner Join tblSNMPInfo On tblAssets.AssetID = tblSNMPInfo.AssetID
Inner Join tblSNMPAssetMac On tblSNMPInfo.IfIndex = tblSNMPAssetMac.IfIndex
And tblSNMPInfo.AssetID = tblSNMPAssetMac.AssetID
Inner Join tblAssets tblAssets1 On tblSNMPAssetMac.AssetMacAddress =
tblAssets1.Mac
Order By tblAssets.AssetName,
tblSNMPInfo.IfIndex
The report gives the correct columns, but it doesn't filter out only interfaces with multiple assets. It shows interfaces with ANY asset. Would that be possible? Sorry, I'm not that great with query languages...