J
JohnLute
(Format([DateReceived],"mmm"" '""yy")) appears as "Oct '07" as it pertains to
this SQL:
SELECT (Format([DateReceived],"mmm"" '""yy")) AS DateReceived1,
Sum(qryCompsFacsMonths.TotalComps) AS SumOfTotalComps1
FROM qryCompsFacsMonths
WHERE (((qryCompsFacsMonths.DateReceived) Between
DateSerial(Year(Date()),Month(Date())-11,1) And
DateSerial(Year(Date()),Month(Date())+1,0)))
GROUP BY (Format([DateReceived],"mmm"" '""yy")),
(Year([DateReceived])*12+Month([DateReceived])-1)
ORDER BY (Year([DateReceived])*12+Month([DateReceived])-1);
How can I get it to display "Oct-07"? I tried "mmm-yy" which works as a
query however it doesn't work as the Row Source for a bar graph chart. The
chart displays Jan-07 on the left and increases chronologically up to Dec07.
Thanks for your help!
this SQL:
SELECT (Format([DateReceived],"mmm"" '""yy")) AS DateReceived1,
Sum(qryCompsFacsMonths.TotalComps) AS SumOfTotalComps1
FROM qryCompsFacsMonths
WHERE (((qryCompsFacsMonths.DateReceived) Between
DateSerial(Year(Date()),Month(Date())-11,1) And
DateSerial(Year(Date()),Month(Date())+1,0)))
GROUP BY (Format([DateReceived],"mmm"" '""yy")),
(Year([DateReceived])*12+Month([DateReceived])-1)
ORDER BY (Year([DateReceived])*12+Month([DateReceived])-1);
How can I get it to display "Oct-07"? I tried "mmm-yy" which works as a
query however it doesn't work as the Row Source for a bar graph chart. The
chart displays Jan-07 on the left and increases chronologically up to Dec07.
Thanks for your help!