Well I was able to get the right results with the following query:
SELECT Sales.Product, Sales.Salesdate, Sales.Retailer
FROM Sales,
(
SELECT Sales.Salesdate, Sales.Product
FROM Sales
GROUP BY Sales.Salesdate, Sales.Product
HAVING Count(Sales.Product)>=2
) as t1
WHERE (Sales.Product=...