EVALUATE
I am having trouble resetting the conditional running totals for my report for my groups. Its only giving me the total for the page and not the entire group.
Below is what I am using for my conditional running total
EVALUATE
WhilePrintingRecords;
CurrencyVar RunningTotal;
If (OnFirstRecord or {V_UNION_ALL_LOANS.LOAN_ID} <> Previous({V_UNION_ALL_LOANS.LOAN_ID})) then
RunningTotal := RunningTotal +
{V_UNION_ALL_LOANS.LOAN_AMOUNT}
Initialize GH
whileprintingrecords;
currencyvar runningtotal := 0
display DETAILS
WhilePrintingRecords;
CurrencyVar runningtotal ; Terri Mimbs
I am having trouble resetting the conditional running totals for my report for my groups. Its only giving me the total for the page and not the entire group.
Below is what I am using for my conditional running total
EVALUATE
WhilePrintingRecords;
CurrencyVar RunningTotal;
If (OnFirstRecord or {V_UNION_ALL_LOANS.LOAN_ID} <> Previous({V_UNION_ALL_LOANS.LOAN_ID})) then
RunningTotal := RunningTotal +
{V_UNION_ALL_LOANS.LOAN_AMOUNT}
Initialize GH
whileprintingrecords;
currencyvar runningtotal := 0
display DETAILS
WhilePrintingRecords;
CurrencyVar runningtotal ; Terri Mimbs