質問
How to get a app.alert popup when 2 conditions are met in the fillable PDF?
Hello,
New here so I need some help.
How do I get a popup whenever the calculated field is less than 4 AND another field called "super" has a number value greater than zero.
This is what I have and the "super" field doesn't seem to have any effect on the popup.
var s = this.getField("super").value;
if(event.value<4&&s>0);
app.alert("All 4 requirements must be met in order to qualify for the super rebate amount.")
