When I exclude one the code is
Where tsysAssetTypes.AssetTypename != 'Monitor' And tblState.Statename =
'Active'
Order By AssetType,
tblAssets.AssetName
And it excludes Monitor
But when I add another one more to the Or.. it looks like
Where (tsysAssetTypes.AssetTypename != 'Monitor' And tblState.Statename =
'Active') Or
(tsysAssetTypes.AssetTypename != 'IOS')
It doesn't exclude anything with the code above.