I have a table that keeps track of the letters we send to our customers. We are also keeping track of the letter status in this table, and specifically, we want to know how many people who received a letter agreed to be contacted again.
This part is easy, but now I have been asked to group the results by pre-specified weeks (i.e. Week 1, Week 2, etc). I have been using a switch statement for this purpose, but now that we are in the 20th or so week, MS Access is saying the query is too complex.
Here is my code - with the switch statement simplified for the sake of brevity. We actually have weeks 1-20 in the actual switch statement, and this is what is causing Access to not process the query.
SELECT Count([Letter Status].Patient_ID) AS CountOfPatient_ID, Switch([Date_Returned] Between #10/25/2011# And #10/31/2011#,"Week 1") AS Week
FROM [Letter Status]
WHERE ((([Letter Status].Letter_Status)="Agreed to be contacted"))
GROUP BY Switch([Date_Returned] Between #10/25/2011# And #10/31/2011#,"Week 1");
Since the switch statement isn't working, I was wondering if there was a more logical way for processing the results by Week. Our temporary solution involves me processing one week at a time, and adding the results to a separate table. However, I'm pretty sure this goes against db normalization, and if there is a better way to do it, I would like to learn.
Please help.