You can try this report. The only thing that you will need to edit is the name of the software. In the report below replace 'Google Chrome' with the name of the software you are wanting to Query. For example if you want all the computers that don't have Microsoft Teams installed, you enter in 'Microsoft Teams'.
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Where tblAssets.AssetID Not In (Select Top 1000000 tblSoftware.AssetID
From tblSoftware Inner Join tblSoftwareUni On tblSoftwareUni.SoftID =
tblSoftware.softID
Where tblSoftwareUni.softwareName Like '%Google Chrome%') And
tblAssetCustom.State = 1
Order By tblAssets.Domain,
tblAssets.AssetName