AdventurGurl
Technical User
I have 3 formulas created to have an end result of all customer balances added up. I need a parameter to pull >= the total customer balances. However, I cannot select my formula in the Select Expert to equal my parameter?
FORMULA 1 : tot1 //Placed in Report Header
WhilePrintingRecords;
NumberVar total;
total := 0
FORMULA 2 : tot2 //Placed in Group Header #4
WhilePrintingRecords;
NumberVar total;
total := total + {amount};
FORMULA 3 : tot3 //Placed in Group Footer #1
WhilePrintingRecords;
NumberVar total;
//Format all to be suppressed.
I want to say in Select Expert: {@tot3} >= {?ExcludeAmount}
but @tot3 is not an option due to WhilePrintingRecord?
Please Help
FORMULA 1 : tot1 //Placed in Report Header
WhilePrintingRecords;
NumberVar total;
total := 0
FORMULA 2 : tot2 //Placed in Group Header #4
WhilePrintingRecords;
NumberVar total;
total := total + {amount};
FORMULA 3 : tot3 //Placed in Group Footer #1
WhilePrintingRecords;
NumberVar total;
//Format all to be suppressed.
I want to say in Select Expert: {@tot3} >= {?ExcludeAmount}
but @tot3 is not an option due to WhilePrintingRecord?
Please Help