I can create a report to list all product keys very easily, and even keys for "2007 Microsoft Office system", but as soon as I try to add sorting it gives me an error, so then I add the TOP 100 PERCENT and it saves, but gives me no results. The GUI seems good in theory, but doesn't seem to be able to follow it's own logic, and manually typing in commands gives me mixed results, but none of the correct results.
Here's the code as I thought it should work, but it does not sort:
SELECT TOP 100 PERCENT
tblSerialnumber.Computername,
tblSerialnumber.Product,
tblSerialnumber.ProductKey
FROM
tblSerialnumber
WHERE
tblSerialnumber.Product = '2007 Microsoft Office system'
ORDER BY
tblSerialnumber.Computername