If I run the first query, I get 8.
If I run this one, I get 7.
SELECT TOP 1000
tblComputers.Computername,
convert(varchar(10), tblComputers.Firstseen, 101) AS [Added Date],
convert(varchar(10), tblComputers.Lastseen, 101) AS [Last Scanned],
tblCompCustom.Department,
tblCompCustom.Building,
tblCompCustom.Location
FROM
tblComputers
INNER JOIN tblCompCustom ON (tblComputers.Computername = tblCompCustom.Computername)
WHERE
tblComputers.Firstseen >= DATEADD([day], -14, GETDATE())
ORDER BY
tblComputers.Firstseen DESC,
tblComputers.Computername