1. I have a report with columns of Currency figures I have 2 that I wont to show 0.00 if they are zero of Null. These fields are calculated (Sum) fields in the feeding query
When I run the report The TotInterest and the Totpayments don't have a zero ($0.00) in their cell.
2. To calculate the Balance file i use
But it's not accommodating where the calculation falls into negative. Where the MainDebt is less than the totPayments the balance should be negative
3. Also you will notice I have a P/Debt or a J/Debt string field. Each row should have one or the other.
3. Also you will notice I have a P/Debt or a J/Debt string field. Each row should have one or the other. It's displaying the string intermittently. The image is a bit of the report on the next page
Can anyone help me please with the above three problems I have. I would be much appreciative.
When I run the report The TotInterest and the Totpayments don't have a zero ($0.00) in their cell.
2. To calculate the Balance file i use
Code:
Balance: IIf(([MainDebt]+Nz([TotInterest]))-Nz([TotPayments])>0,([MainDebt]+Nz([TotInterest]))-Nz([TotPayments]),0)
But it's not accommodating where the calculation falls into negative. Where the MainDebt is less than the totPayments the balance should be negative
3. Also you will notice I have a P/Debt or a J/Debt string field. Each row should have one or the other.
3. Also you will notice I have a P/Debt or a J/Debt string field. Each row should have one or the other. It's displaying the string intermittently. The image is a bit of the report on the next page
Can anyone help me please with the above three problems I have. I would be much appreciative.