N
NotGood@All
I'm trying to get a count of things that happended for the past 6 weeks. I'm
trying to modify this code:
SELECT (DateCreated) AS Expr1, Count(*) AS [Output]
FROM qryForStatsPageOnly
WHERE (qryForStatsPageOnly.DateCreated)<=DateAdd("ww",6,Date())
GROUP BY (DateCreated)
ORDER BY (DateCreated) DESC;
but no matter what I put in place of the "6" it works just like I have "d"
in the "ww". When I read help on DateAdd, it reads like all you have to do
is replace a "d" with "m" with "yyyy".....
trying to modify this code:
SELECT (DateCreated) AS Expr1, Count(*) AS [Output]
FROM qryForStatsPageOnly
WHERE (qryForStatsPageOnly.DateCreated)<=DateAdd("ww",6,Date())
GROUP BY (DateCreated)
ORDER BY (DateCreated) DESC;
but no matter what I put in place of the "6" it works just like I have "d"
in the "ww". When I read help on DateAdd, it reads like all you have to do
is replace a "d" with "m" with "yyyy".....