Question : SQL add filter by date

I have attached my script.
I need to be able to also filter by date (Month).
The date field is named DATESTAMP and is in the format of 00/00/0000
I need to add a filter by month so I can show all the data from say April or May.

How do I add this filter to the existing SQL statement
1:
2:
3:
4:
5:
6:
7:
8:
SELECT DISTINCTROW TBLusers.[User ID], TBLusers.User, 
Sum(TBL_DATA.[Copy + Print_Total_Full Color]+TBL_DATA.[Copy + Print_Total_Two-color]) AS Color, 
Sum(TBL_DATA.[Copy + Print_Total_Black]) AS BW, 
Sum(TBL_DATA.[Copy + Print_Total_Total] ) AS Ttotal
FROM TBLusers INNER JOIN TBL_DATA ON TBLusers.[User ID] = TBL_DATA.[Account name]
GROUP BY TBLusers.[User ID], TBLusers.User, TBL_DATA.Device
HAVING (((TBL_DATA.Device)='230'))
ORDER BY TBLusers.[User ID];

Answer : SQL add filter by date

try this query

SELECT DISTINCTROW TBLusers.[User ID], TBLusers.User,
Sum(TBL_DATA.[Copy + Print_Total_Full Color]+TBL_DATA.[Copy + Print_Total_Two-color]) AS Color,
Sum(TBL_DATA.[Copy + Print_Total_Black]) AS BW,
Sum(TBL_DATA.[Copy + Print_Total_Total] ) AS Ttotal
FROM TBLusers INNER JOIN TBL_DATA ON TBLusers.[User ID] = TBL_DATA.[Account name]
Where TBL_DATA.Device='230' And Format([DATESTAMP],"mmmm") In('April','May')
GROUP BY TBLusers.[User ID], TBLusers.User, TBL_DATA.Device
ORDER BY TBLusers.[User ID];
Random Solutions  
 
programming4us programming4us