This gives me all the info I want but does not sort by weeknumber. It sorts by the average. I need to sort by weeks for the graph. I tryed all the normal ways of sorting I can think of I know I am n\missing somethie easy...
TRANSFORM Sum(qry_first_hour_weekly.AvgOfGPH) AS SumOfAvgOfGPH
SELECT qry_first_hour_weekly.weeknumber
FROM qry_first_hour_weekly
GROUP BY qry_first_hour_weekly.weeknumber
PIVOT qry_first_hour_weekly.Year;
TRANSFORM Sum(qry_first_hour_weekly.AvgOfGPH) AS SumOfAvgOfGPH
SELECT qry_first_hour_weekly.weeknumber
FROM qry_first_hour_weekly
GROUP BY qry_first_hour_weekly.weeknumber
PIVOT qry_first_hour_weekly.Year;