I moved this topic from the Report Center section of the forum to Report Requests & Questions. Please note that the Report Center is for posting ready-to-use reports, not questions.
Your report doesn't actually include the software version field. It only lists software names. If you are seeing software versions, the version numbers are part of the software names as listed in Add/Remove Programs on the client machines. Mozilla for instance does tend to include the software version in the name. You could try using cases to "clean up" the software names and remove the version numbers, as seen below, but this may not be 100% accurate.
Select Top 1000000 Case
When tblSoftwareUni.softwareName Like 'windows internet explorer%'
Then 'Internet Explorer'
When tblSoftwareUni.softwareName Like 'mozilla firefox %.%' Then 'Firefox'
When tblSoftwareUni.softwareName Like 'google chrome%' Then 'Chrome'
When tblSoftwareUni.softwareName Like 'opera%' Then 'Opera'
Else tblSoftwareUni.softwareName End As Browser,
Count(tblSoftware.SoftwareID) As Count
From tblSoftware
Inner Join tblSoftwareUni On tblSoftwareUni.SoftID = tblSoftware.softID
Inner Join tblAssetCustom On tblAssetCustom.AssetID = tblSoftware.AssetID
Where (tblSoftwareUni.softwareName Like 'windows internet explorer%' And
tblSoftwareUni.softwareName Not Like '%administration kit%' And
tblAssetCustom.State = 1) Or
(tblSoftwareUni.softwareName Like 'mozilla firefox %.%' And
tblAssetCustom.State = 1) Or
(tblSoftwareUni.softwareName Like 'google chrome%' And tblAssetCustom.State =
1) Or
(tblSoftwareUni.softwareName Like 'opera%' And tblAssetCustom.State = 1)
Group By Case
When tblSoftwareUni.softwareName Like 'windows internet explorer%'
Then 'Internet Explorer'
When tblSoftwareUni.softwareName Like 'mozilla firefox %.%' Then 'Firefox'
When tblSoftwareUni.softwareName Like 'google chrome%' Then 'Chrome'
When tblSoftwareUni.softwareName Like 'opera%' Then 'Opera'
Else tblSoftwareUni.softwareName End
Order By Count Desc