I have groups set up on a date to change group on every month. The data that returns is as follows:
CASE DATE MONTHS
934 01/16/2008 12
934 01/16/2008 12
1435 01/25/2008 6
Right now the total for the Months field that returns is 30, but I only need the total added once per case (18). Case 934 returned two rows because there are two records. Normally I solve this problem using a running total that changes on change of group, however because the group is based on a date, the running total just gives me the amount of 12. How can I get this to give me the correct total of 18?
CASE DATE MONTHS
934 01/16/2008 12
934 01/16/2008 12
1435 01/25/2008 6
Right now the total for the Months field that returns is 30, but I only need the total added once per case (18). Case 934 returned two rows because there are two records. Normally I solve this problem using a running total that changes on change of group, however because the group is based on a date, the running total just gives me the amount of 12. How can I get this to give me the correct total of 18?