You might write a formula. I have a formula to show me the % of inc/dec between two years of data
if Sum ({@Quarter 1}, {INCIDENT.MAIN_OFF_CODE}) <> 0 then
(Sum ({@Quarter 2}, {INCIDENT.MAIN_OFF_CODE}) - Sum ({@Quarter 1}, {INCIDENT.MAIN_OFF_CODE})) / Sum ({@Quarter 1}, {INCIDENT.MAIN_OFF_CODE}) * 100
else if Sum ({@Quarter 1}, {INCIDENT.MAIN_OFF_CODE}) = 0 then
Sum ({@Quarter 2}, {INCIDENT.MAIN_OFF_CODE}) * 100
maybe you can use the same principle and change the formula to get the average of the sums and project your new field?????
But maybe someone else has an easier way...