You can add any column to this report. Only you'll need to add additional columns to both the
Select part and the
Group by part of the Query in order to count installations per software
and per operating system. In this case, add
tblOperatingsystem to your report and select the
Caption field. Please find the modified example report below:
Select Top 1000000 tblAssetCustom.Custom2,
tblSoftwareUni.softwareName As Software,
tblSoftware.softwareVersion As Version,
tblSoftwareUni.SoftwarePublisher As Publisher,
tblOperatingsystem.Caption As OS,
Count(tblSoftware.AssetID) As Total
From tblSoftware
Inner Join tblAssets On tblSoftware.AssetID = tblAssets.AssetID
Inner Join tblSoftwareUni On tblSoftware.softID = tblSoftwareUni.SoftID
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblOperatingsystem
On tblAssets.AssetID = tblOperatingsystem.AssetID
Where tblAssetCustom.State = 1
Group By tblAssetCustom.Custom2,
tblSoftwareUni.softwareName,
tblSoftware.softwareVersion,
tblSoftwareUni.SoftwarePublisher,
tblOperatingsystem.Caption
Order By tblAssetCustom.Custom2,
Software