Here's the scenario:
I need to count cases open at the end of each week that are <=30 days old and also the cases that are >30 days old. I've developed two queries that use a parameter to allow the user to enter the End Date. Here's a sample of one:
SELECT Count(case_tracking_tab.case_no) AS [30 Days or Less]
FROM case_tracking_tab
WHERE (((DateDiff("d",[rcvd_dt],[Enter Ending Date]))<=30) AND ((case_tracking_tab.comp_dt) Is Null));
It works fine and I'm able to combine the results of the two queries into a combined query.
**I need help** with the solution to create a query to display a month broken down into W1, W2, W3, W4. It's to be used for a bar chart to the compare the results of each week.
My brain is fried and would appreciate any suggestions...
Thanks!
Sandy
I need to count cases open at the end of each week that are <=30 days old and also the cases that are >30 days old. I've developed two queries that use a parameter to allow the user to enter the End Date. Here's a sample of one:
SELECT Count(case_tracking_tab.case_no) AS [30 Days or Less]
FROM case_tracking_tab
WHERE (((DateDiff("d",[rcvd_dt],[Enter Ending Date]))<=30) AND ((case_tracking_tab.comp_dt) Is Null));
It works fine and I'm able to combine the results of the two queries into a combined query.
**I need help** with the solution to create a query to display a month broken down into W1, W2, W3, W4. It's to be used for a bar chart to the compare the results of each week.
My brain is fried and would appreciate any suggestions...
Thanks!
Sandy