G
Guest
I am trying to count the rows in a query and display it by Month/Year.
My counting works fine but I am having difficulty displaying per Month/Year.
This is the SQL view as designed by the Design View:
SELECT Count(GRV.[Date Received]) AS [CountOfDate Received], [Stock
File].Product, GRV.[Date Received]
FROM GRV INNER JOIN [Stock File] ON (GRV.Serial = [Stock File].[Serial
Number]) AND (GRV.[Date Received] = [Stock File].[Date Received]) AND
(GRV.[Warranty Period] = [Stock File].[Warranty Period])
GROUP BY [Stock File].Product, GRV.[Date Received]
HAVING ((([Stock File].Product) Like "*Digipos*" Or ([Stock File].Product)
Like "*Epson*"));
Please help
My counting works fine but I am having difficulty displaying per Month/Year.
This is the SQL view as designed by the Design View:
SELECT Count(GRV.[Date Received]) AS [CountOfDate Received], [Stock
File].Product, GRV.[Date Received]
FROM GRV INNER JOIN [Stock File] ON (GRV.Serial = [Stock File].[Serial
Number]) AND (GRV.[Date Received] = [Stock File].[Date Received]) AND
(GRV.[Warranty Period] = [Stock File].[Warranty Period])
GROUP BY [Stock File].Product, GRV.[Date Received]
HAVING ((([Stock File].Product) Like "*Digipos*" Or ([Stock File].Product)
Like "*Epson*"));
Please help
