I have a fixed start date of 06/30/2014
In a table - I have records that are marked complete on certain dates
I need a cumulative query by week based on the start date
the final result will look like below
Week Ending Completed # Cumulative # % of Total
7/4/2014 2 2
7/11/2014 3 5
The fields I have are named StartDate and Completed
I created a query to show only completed records - but I do not know how to group by
the week - using the starting date of 01/30/2014 as the start date
the initial query to select completed records is below
SELECT tblPatients.RecordID, tblPatients.Completed, tblPatients.Completed_dt, qryConfig_StartDate.StartDate
FROM tblPatients, qryConfig_StartDate
WHERE (((tblPatients.Completed)=True));
Thanks
AB