Very intresting way to make 2 tables like that. That will come in handy, thanks!
However it still wasn't working. I had to load the old report builder and I figured out the code I needed.
SELECT
tblComputers.Computername,
tblSoftware.softwareName AS software1,
tblSoftware1.softwareName AS software2,
tblSoftware1.softwareVersion AS version2
FROM
tblComputers
INNER JOIN tblSoftware ON (tblComputers.Computername = tblSoftware.ComputerName)
INNER JOIN tblSoftware tblSoftware1 ON (tblSoftware1.ComputerName = tblSoftware.ComputerName)
WHERE
tblSoftware.softwareName = 'MP2 6.0 Oracle Edition' AND
(tblSoftware1.softwareName LIKE 'Microsoft Office Professional%' OR
tblSoftware1.softwareName LIKE 'Microsoft Office Standard%' OR
tblSoftware1.softwareName LIKE 'Microsoft Office 2000%' OR
tblSoftware1.softwareName LIKE 'Microsoft Office XP%')
Thanks!
EDIT: I had no idea that I could use () like that, I just happened to use them in my example to explain what I wanted, not knowing thats how to do it
🙂