Answered
Formula update
Hi,
I use this simple formula:
var valeurA = this.getField("p_52").value;
var valeurB = this.getField("p_502").value;
var valeurC = this.getField("p_33").value;
var total = (valeurA + valeurB - valeurC) * 1;
if (total < 0) {total = 0;}
event.target.value = total;If the value of field A and B changes, the formula result will not update automatically
until I enter some value in field C (even 0). I would like it not to be necessary to enter any value in the C field to see the result of the A + B fields. Please help. Thank you very much for help!
