R
Rob
I am attempting to count null date fields and group them by week field. The
following query identifies the fields with no problem.
SELECT tblSARData.WeekNumber, tblSARData.mannotifieddate
FROM tblSARData
WHERE isnull([tblSARData].[mannotifiedDate]);
Unfortunately, I'm not able to count them and group by the WeekNumber field.
Each attempt results in grouped week numbers and a 0 value for the count
which is incorrect. Here is an example. Any help would be appreciated.
SELECT tblSARData.WeekNumber, Count(tblSARData.mannotifieddate) AS
CountOfmannotifieddate
FROM tblSARData
WHERE (((IsNull([tblSARData].[mannotifiedDate]))<>False))
GROUP BY tblSARData.WeekNumber;
following query identifies the fields with no problem.
SELECT tblSARData.WeekNumber, tblSARData.mannotifieddate
FROM tblSARData
WHERE isnull([tblSARData].[mannotifiedDate]);
Unfortunately, I'm not able to count them and group by the WeekNumber field.
Each attempt results in grouped week numbers and a 0 value for the count
which is incorrect. Here is an example. Any help would be appreciated.
SELECT tblSARData.WeekNumber, Count(tblSARData.mannotifieddate) AS
CountOfmannotifieddate
FROM tblSARData
WHERE (((IsNull([tblSARData].[mannotifiedDate]))<>False))
GROUP BY tblSARData.WeekNumber;