i need you help with this table please
GROUP BY DatePart("ww",[date]), statisticsABC.Date HAVING (((statisticsABC.Date) Between [STARTDATE] And [ENDDATE]));
i used this one DatePart("ww",[date]) but it shows me data like this
i need you help with this table please
GROUP BY DatePart("ww",[date]), statisticsABC.Date HAVING (((statisticsABC.Date) Between [STARTDATE] And [ENDDATE]));
i used this one DatePart("ww",[date]) but it shows me data like this
Exclude the date field from the grouping:
...
WHERE
statisticsABC.Date Between [STARTDATE] And [ENDDATE]
GROUP BY
DatePart("ww",statisticsABC.Date)