I have a query that pulls daily numbers and averages them by week. That query is listed below. What I would like to do is have the date display the day the week started instead of the week number. Any help with this is greatly appreciated.
SELECT (Format([Date],"ww"" '""yy"
) AS Expr1, Avg(Deskside_IOC_Rate_qry.InterviewRate) AS AvgOfInterviewRate, Avg(Deskside_IOC_Rate_qry.OfferRate) AS AvgOfOfferRate, Avg(Deskside_IOC_Rate_qry.CloseRate) AS AvgOfCloseRate
FROM Deskside_IOC_Rate_qry
GROUP BY (Format([Date],"ww"" '""yy"
), (Year([Date])*CLng(54)+DatePart("ww",[Date],0)-1);
Thanks,
Mike
SELECT (Format([Date],"ww"" '""yy"
FROM Deskside_IOC_Rate_qry
GROUP BY (Format([Date],"ww"" '""yy"
Thanks,
Mike