Try this ---
SELECT nishkrish_1.Customer, Format([OrderDate],"mmmm yyyy") AS [Order],
Count(nishkrish_1.Customer) AS Orders
FROM nishkrish_1
GROUP BY nishkrish_1.Customer, Format([OrderDate],"yyyymm"),
Format([OrderDate],"mmmm yyyy")
HAVING (((Count(nishkrish_1.Customer))>1))
ORDER BY nishkrish_1.Customer, Format([OrderDate],"yyyymm");
Use your table name instead of nishkrish_1 and your field names.
--
KARL DEWEY
Build a little - Test a little
nishkrish said:
I need towrite a query to find out if there are any repet customers for a
specific month
ex if a specfic customer sends the same order twice for a month