You didn't post your table structure, but here goes based on my interpetation of your columns from the query...SELECT T.SourceMachine, T.VolumeName, T.DateTimeStamp FROM StorageReportsOpenSystems T -- T is short for Today LEFT OUTER JOIN StorageReportsOpenSystems Y -- Y is for Yesterday ON T.SourceMachine = Y.SourceMachine AND T.VolumeName = Y.VolumeName AND DATEDIFF(dd, Y.DateTimeStamp, T.DateTimeStamp) = 1 WHERE Y.VolumeName IS NULL ORDER BY SourceMachine