Answered
Need help on writing this formula from Excel on a pdf form
=IF(AND(cell a>=0.01,$call a<=0.3724),"X","")
appreaciated for the help in advance.
=IF(AND(cell a>=0.01,$call a<=0.3724),"X","")
appreaciated for the help in advance.
var a = Number(this.getField("A").valueAsString);
if (a>=0.01 && a<=0.3724) event.value = "X";
else event.value = "";Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.