Calculate x - y then if result is < 0, enter 0
Calculate x - y then if result is < 0, enter 0
Calculate x - y then if result is < 0, enter 0
Line 7 of the Local Tax Form says:
7. Total Taxable Net Profit (Subtract Line 6 from Line 5. If less than zero, enter zero) .
.
I did the subtraction -
NetProfit - NetLoss
But don't know how to set the result (TotalTaxNP) to 0 if it is < 0
if NetLoss > NetProfit, then TotalTaxNP = 0
Use this code as the custom calculation script of your field:
var v1 = Number(this.getField("NetProfit").valueAsString);
var v2 = Number(this.getField("NetLoss").valueAsString);
event.value = Math.max(0, v1-v2);
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.