It should not be possible for an anti-virus software installation to be listed in "Asset: Antivirus Expired", but not in "Server: All servers with Anti-virus" or "Workstation: All workstations with Anti-virus software", if this is what you're inquiring about. Make sure you are using the default queries. We've pasted them below.
Asset: Antivirus ExpiredSelect Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblAntivirus.DisplayName As Antivirus
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblAntivirus On tblAssets.AssetID = tblAntivirus.AssetID
Where tblAssetCustom.State = 1 And tblAntivirus.productUpToDate = 0
Order By tblAssets.AssetName
Server: All servers with Anti-virusSelect Top 1000000 unioned.assetid,
tblAssets.AssetUnique,
tblAssets.Domain,
tblAssets.Lastseen,
tsysOS.Image As icon,
unioned.software,
unioned.version,
unioned.security_center As [Windows security center]
From ((Select a.assetid As assetid,
a.software As software,
a.version As version,
b.software As security_center
From (Select tblSoftware.AssetID As assetid,
tblSoftwareUni.softwareName As software,
tblSoftware.softwareVersion As version,
tsysantivirus.Software As pattern
From tblSoftware
Inner Join tblSoftwareUni On tblSoftware.softID = tblSoftwareUni.SoftID
Inner Join tsysantivirus On tblSoftwareUni.softwareName Like
tsysantivirus.Software) a
Left Join (Select tblAntivirus.AssetID As assetid,
tblAntivirus.DisplayName As software,
Null As version,
tsysantivirus.Software As pattern
From tblAntivirus
Inner Join tsysantivirus
On tblAntivirus.DisplayName Like tsysantivirus.Software) b
On a.assetid = b.assetid And a.pattern Like b.pattern)
Union
(Select tblAntivirus.AssetID As assetid,
Null software,
Null As version,
tblAntivirus.DisplayName As security_center
From tblAntivirus
Where tblAntivirus.AntivirusId Not In (Select tblAntivirus.AntivirusId
From tblAntivirus Join tsysantivirus On tblAntivirus.DisplayName Like
tsysantivirus.Software))) unioned
Inner Join tblAssetCustom On unioned.assetid = tblAssetCustom.AssetID
Inner Join tblAssets On tblAssets.AssetID = unioned.assetid
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Where tblComputersystem.Domainrole >= 2 And tblAssetCustom.State = 1
Workstation: All workstations with Anti-virus softwareSelect Top 1000000 unioned.assetid,
tblAssets.AssetUnique,
tblAssets.Domain,
tblAssets.Lastseen,
tsysOS.Image As icon,
unioned.software,
unioned.version,
unioned.security_center As [Windows security center]
From ((Select a.assetid As assetid,
a.software As software,
a.version As version,
b.software As security_center
From (Select tblSoftware.AssetID As assetid,
tblSoftwareUni.softwareName As software,
tblSoftware.softwareVersion As version,
tsysantivirus.Software As pattern
From tblSoftware
Inner Join tblSoftwareUni On tblSoftware.softID = tblSoftwareUni.SoftID
Inner Join tsysantivirus On tblSoftwareUni.softwareName Like
tsysantivirus.Software) a
Left Join (Select tblAntivirus.AssetID As assetid,
tblAntivirus.DisplayName As software,
Null As version,
tsysantivirus.Software As pattern
From tblAntivirus
Inner Join tsysantivirus
On tblAntivirus.DisplayName Like tsysantivirus.Software) b
On a.assetid = b.assetid And a.pattern Like b.pattern)
Union
(Select tblAntivirus.AssetID As assetid,
Null software,
Null As version,
tblAntivirus.DisplayName As security_center
From tblAntivirus
Where tblAntivirus.AntivirusId Not In (Select tblAntivirus.AntivirusId
From tblAntivirus Join tsysantivirus On tblAntivirus.DisplayName Like
tsysantivirus.Software))) unioned
Inner Join tblAssetCustom On unioned.assetid = tblAssetCustom.AssetID
Inner Join tblAssets On tblAssets.AssetID = unioned.assetid
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Where tblComputersystem.Domainrole <= 1 And tblAssetCustom.State = 1