using 3 formulas one for calculating the totals and another one to reset it on change of page and another one to display total in PF.I am assuming order table in Xtreme.mdb
1st formula. place this in detail section and supress this.
---------
shared currencyvar x;
x := x + {Orders.Order Amount};
x
2nd formula. place this in PF section.
-----
shared currencyvar x;
x
2nd formula. place this in PH section.
-----
shared currencyvar x;
x := 0;
|