okay I think I get what your saying... I tried what VBAiNET mentioned
SELECT Table1.Note, Table1.Agent, Table1.InterDate, Table1.CustID
FROM Table1
WHERE InterDate BETWEEN Date() AND Date()-7
GROUP BY Table1.Note, Table1.Agent, Table1.InterDate, Table1.CustID
HAVING Count([CustID]) > 1;
but...