Try this:
SELECT
tblSoftware.ComputerName,
tblSoftware.softwareName
FROM
tblSoftware
WHERE
tblSoftware.softwareName LIKE '%Microsoft Office%' OR
tblSoftware.softwareName LIKE '%Visio%' OR
tblSoftware.softwareName LIKE '%Publisher%'
You will have to tweak this some, possibly add each version instead of the generics I put in.
Hope this helps