Hi,
I am having trouble doing a manual running total sum on a formula and this Formula A cannot be sum by the built in function from Crystal 10.
Goal: I need to have a grand total on Formula A.
//Placed on the group footer
Formula 1
Whileprintingrecords;
Shared numbervar totalsum;
totalsum := totalsum + Formula A;
//The totalsum is correct at the last page on the group footer, however, when i create another formula for total sum and put it on the report footer, it is adding Formula A twice.
//Place on the report footer
Formula 2
Whileprintingrecords
Shared numbervar totalsum;
totalsum;
For example,
FormulaA on group 1 footer
1 Totalsum = 1
2 3
3 6
4 10
5 15
However the totalsum I placed on report footer is 20. How can I fix this?
Thanks
I am having trouble doing a manual running total sum on a formula and this Formula A cannot be sum by the built in function from Crystal 10.
Goal: I need to have a grand total on Formula A.
//Placed on the group footer
Formula 1
Whileprintingrecords;
Shared numbervar totalsum;
totalsum := totalsum + Formula A;
//The totalsum is correct at the last page on the group footer, however, when i create another formula for total sum and put it on the report footer, it is adding Formula A twice.
//Place on the report footer
Formula 2
Whileprintingrecords
Shared numbervar totalsum;
totalsum;
For example,
FormulaA on group 1 footer
1 Totalsum = 1
2 3
3 6
4 10
5 15
However the totalsum I placed on report footer is 20. How can I fix this?
Thanks