Hello All,
I need to show duplicate records in the details section of a report but I do not want the amounts to double when I do a total on that field. I created a formula which does this:
This formula works and prints a zero amount for the duplicate, but I cannot get a total for the formula. Is there something that I'm missing? Is there a better way to do this? Any suggestions would be appreciated.
Regards,
Rick Dayao
I need to show duplicate records in the details section of a report but I do not want the amounts to double when I do a total on that field. I created a formula which does this:
Code:
If Previous ({EmployeeDetail.LoanNumber}) = {EmployeeDetail.LoanNumber} then 0
else {EmployeeDetail.TotalLoanAmount}
This formula works and prints a zero amount for the duplicate, but I cannot get a total for the formula. Is there something that I'm missing? Is there a better way to do this? Any suggestions would be appreciated.
Regards,
Rick Dayao