Copy link to clipboard
Copied
Hello, I'm really new to this, and I'm trying to figure out if I have a formula Text Field A + Text Field B to only be calculated if it's less than zero in another text filed, is something like that possible at all?
Copy link to clipboard
Copied
Sum of A+B should be less than 0 and if it is then show result in 3rd field?
You can use this in 3rd field as 'Custom calculation script':
var A = Number(this.getField("Text Field A").valueAsString);
var B = Number(this.getField("Text Field B").valueAsString);
var total = A+B;
if(total < 0)
event.value = total;
else
event.value = "";