I am using the following formula to compute a running total at the Group Footer level.
WhilePrintingRecords;
numberVar fit_runtotal :=fit_runtotal + {@gross_adj}
The number calculates fine and the last GF1 line has the correct total. However I would like to have the last GF1 line total display in my Report Footer and everything I try seems add the last record amount back into the total.
(i.e. fit_runtotal on the last line may show 10,200 and @gross_adj on the last line is 150.60. Instead of 10,200 in my report footer I get 10,350.60 because it adds the 150.60 again.)
WhilePrintingRecords;
numberVar fit_runtotal :=fit_runtotal + {@gross_adj}
The number calculates fine and the last GF1 line has the correct total. However I would like to have the last GF1 line total display in my Report Footer and everything I try seems add the last record amount back into the total.
(i.e. fit_runtotal on the last line may show 10,200 and @gross_adj on the last line is 150.60. Instead of 10,200 in my report footer I get 10,350.60 because it adds the 150.60 again.)