Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
15

Sum If Less Than Zero in PDF

New Here ,
Aug 18, 2023 Aug 18, 2023

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? 

TOPICS
How to , JavaScript , PDF , PDF forms
227
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 18, 2023 Aug 18, 2023
LATEST

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 = "";
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines