You can run a query in a query, if that helps. I have a query called qryCollision that is called in the query below. If you use the design grid you can add an existing query as you would a table.
the sql view looks like this where qryCollision is another query (sql statement) which i what i think you want.
SELECT tblResources.ResID, qryCollision.Surname, qryCollision.Firstname, qryCollision.TelExt, qryCollision.StartDate, qryCollision.EndDate
FROM qryCollision RIGHT JOIN tblResources ON qryCollision.ResID = tblResources.ResID
WHERE (((tblResources.ResID) Not In ([qryCollision]![ResID])));