Here is some sample data
giftkey amount date giftid
00001 25 3/13/2010 21
00001 25 3/13/2010 21
00002 25 3/13/2010 21
In this scenario it appears that $75 was paid. However the first two entries duplicate and should actually be one transaction. The amt given is actually $50. I constructed a running total based on the group giftkey. The running total is as follows
field to summarize = amount
evaluate = on change of group giftkey
reset on change of group giftid (or when the giftid changes)
the problem is the running total only counts the amount or in this case $25
the data rests on the detail line. this allows me to analyze the duplicates. What can be done to sum the totals and avoid the duplicates.
giftkey amount date giftid
00001 25 3/13/2010 21
00001 25 3/13/2010 21
00002 25 3/13/2010 21
In this scenario it appears that $75 was paid. However the first two entries duplicate and should actually be one transaction. The amt given is actually $50. I constructed a running total based on the group giftkey. The running total is as follows
field to summarize = amount
evaluate = on change of group giftkey
reset on change of group giftid (or when the giftid changes)
the problem is the running total only counts the amount or in this case $25
the data rests on the detail line. this allows me to analyze the duplicates. What can be done to sum the totals and avoid the duplicates.