Skip to main content
Participant
March 21, 2025
Answered

If statement in my Simplified field notation?

  • March 21, 2025
  • 2 replies
  • 395 views

I finally got this to work and the result of this equation goes into a SubPayment field: 

 

WeeklySalary-EIPayment1*WeeklySalary1

 

However, when there is no amount in EIPayment1 I want the result to be zero in the SubPayment field.

 

Is there a way to do this? I am a brand spanking new user......

 

 

Correct answer Nesa Nurani

Use this as custom calculation script of SubPayment field:

var ws = Number(this.getField("WeeklySalary").valueAsString);
var ws1 = Number(this.getField("WeeklySalary1").valueAsString);
var ep = Number(this.getField("EIPayment1").valueAsString);

if(ep == 0)
 event.value = 0;
else
 event.value = ws-ep*ws1;

 

2 replies

Nesa Nurani
Community Expert
Nesa NuraniCommunity ExpertCorrect answer
Community Expert
March 21, 2025

Use this as custom calculation script of SubPayment field:

var ws = Number(this.getField("WeeklySalary").valueAsString);
var ws1 = Number(this.getField("WeeklySalary1").valueAsString);
var ep = Number(this.getField("EIPayment1").valueAsString);

if(ep == 0)
 event.value = 0;
else
 event.value = ws-ep*ws1;

 

Participant
March 21, 2025

Thank you so much!!!!!!!

Bernd Alheit
Community Expert
Community Expert
March 21, 2025

If statement is there not possible.

Participant
March 21, 2025

how can I get the SubPayment field to show a zero or blank if there is no amount in the EIPayment1 field but do the cal I mentioned if there is