Actualy this is the report I created. When I go to the web console and click on the report it does not display the whole date and time as seen within the dbo.tblComputers.Lastseen field, just the date. The web console view gives the column name of "date". I can't seem to change that.
SELECT DISTINCT
TOP (10) PERCENT dbo.tblComputers.Computername, dbo.tblComputers.Username, dbo.tblOperatingsystem.Description,
dbo.tblComputers.Lastseen
FROM dbo.tblComputers INNER JOIN
dbo.tblOperatingsystem ON dbo.tblComputers.Computername = dbo.tblOperatingsystem.Computername
ORDER BY dbo.tblComputers.Lastseen DESC