M
mohsin via AccessMonster.com
Hi Expert
I do a query to get per month. The problem is the output is as below. How can
I make a correction, for the type of date? So as as will get the right result.
Thank you for your help,
MSS Month CSR%
JD1MSS01 29.09.09 0.96
JD1MSS01 30.09.09 0.96
JD1MSS01 December 0.96
RY1MSS01 29.09.09 0.92
My SQL;
SELECT [qry6_CC_CSR%_daily].MSS, Format([qry6_CC_CSR%_daily]![Date],"mmmm")
AS [Month], Avg(([qry6_CC_CSR%_daily]![CSR%])) AS [CSR%]
FROM [qry6_CC_CSR%_daily]
GROUP BY [qry6_CC_CSR%_daily].MSS, Format([qry6_CC_CSR%_daily]![Date],"mmmm")
;
I do a query to get per month. The problem is the output is as below. How can
I make a correction, for the type of date? So as as will get the right result.
Thank you for your help,
MSS Month CSR%
JD1MSS01 29.09.09 0.96
JD1MSS01 30.09.09 0.96
JD1MSS01 December 0.96
RY1MSS01 29.09.09 0.92
My SQL;
SELECT [qry6_CC_CSR%_daily].MSS, Format([qry6_CC_CSR%_daily]![Date],"mmmm")
AS [Month], Avg(([qry6_CC_CSR%_daily]![CSR%])) AS [CSR%]
FROM [qry6_CC_CSR%_daily]
GROUP BY [qry6_CC_CSR%_daily].MSS, Format([qry6_CC_CSR%_daily]![Date],"mmmm")
;