Hello @clonemykey
The IGNOREFIELD operation can be used in the equations similar to other operations in the plugin. However, be careful in no create an infinite loop.
Best regards.
So something similar to the code below should be functional? fieldname27 is a slider with values 1-100.
IF(fieldname27>=2,ACTIVATEFIELD(33),IGNOREFIELD(33));
-
This reply was modified 5 years, 7 months ago by
clonemykey.
Hello @clonemykey
In your equation was missed the close parenthesis at the end. However, I recommend you the use of the ternary javascript operator:
(2<=fieldname27) ? ACTIVATEFIELD(33) : IGNOREFIELD(33);
Best regards.
Thanks for this. The ternary JS code works. The closed parenthesis was just a copy and paste error. I can confirm my code still does not work. We’ll just switch to yours.
Hello @clonemykey
Yes, please, use the alternative with the ternary operator.
Best regards.