I need to create a report that shows the monthly total per column.
For example, these are the records from a table:
ID Payment Date Payment Method Coupon Mailed Date Responded Turnaround Time
1 02/01/2014 Cash 03/01/2014 05/12/2014 73
2 02/15/2014 Credit 02/25/2014 03/01/2014 5
3 03/25/2014 Credit 04/01/2014 05/01/2014 31
4 03/25/2014 Credit 05/15/2014 05/25/2014 10
5 04/10/2014 Cash 04/25/2014 05/10/2014 16
I want the query to show something like this:
Number of Number of Number of Coupon Date Average
Month Payments Cash Payment Credit Payment Mailed Responded Turnaround Time
February 2 1 1 1 39
March 2 2 1 1 21
April 1 1 1 16
May 1 4
Please help.
How do I create this query?
For example, these are the records from a table:
ID Payment Date Payment Method Coupon Mailed Date Responded Turnaround Time
1 02/01/2014 Cash 03/01/2014 05/12/2014 73
2 02/15/2014 Credit 02/25/2014 03/01/2014 5
3 03/25/2014 Credit 04/01/2014 05/01/2014 31
4 03/25/2014 Credit 05/15/2014 05/25/2014 10
5 04/10/2014 Cash 04/25/2014 05/10/2014 16
I want the query to show something like this:
Number of Number of Number of Coupon Date Average
Month Payments Cash Payment Credit Payment Mailed Responded Turnaround Time
February 2 1 1 1 39
March 2 2 1 1 21
April 1 1 1 16
May 1 4
Please help.
How do I create this query?