Skip to main content
Participant
August 18, 2023
Question

Sum If Less Than Zero in PDF

  • August 18, 2023
  • 1 reply
  • 253 views

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? 

This topic has been closed for replies.

1 reply

Nesa Nurani
Community Expert
Community Expert
August 19, 2023

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 = "";