cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
wayneRex
Engaged Sweeper II
Hi everyone

I would like to create a Pie Chart which shows all the editions of Windows XP,7,8 and 10 from a selection of IP ranges.


I have 15 IP ranges, which i would like in one Pie Chart, is that Possible?

Thanks for your help

Wayne
1 REPLY 1
AZHockeyNut
Champion Sweeper III
I thought there was one already (I have one) that is a canned report but maybe I added it a while back and forgot.
I assume you mean something like this....


Select Top 1000000 tsysOS.OSname,
Count(tblAssets.AssetID) As Total
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tblAssets.OScode = tsysOS.OScode
Where tblAssetCustom.State = 1 And tblAssets.Assettype = -1
Group By tsysOS.OSname
Order By Total Desc