Hello @mftzk
My apologies for the delay in respond to your ticket.
Yes, that’s possible and very simple. There are different alternatives:
Using the “IF” and “AND” operations included by the plugin:
IF(AND(10<fieldname1,fieldname1<100), 'Result A', 'Result B')
Using the same operation but with the logical operator of javascript (&&)
IF(10<fieldname1 && fieldname1<100, 'Result A', 'Result B')
Using the ternary operator of javascript:
(10<fieldname1 && fieldname1<100) ? 'Result A' : 'Result B'
Using the “if” conditional statement (javascript is case sensitive, do not confuse the “if” conditional statement of javascript with the “IF” operation in the plugin), in this case it is required to define the equation as a function:
(function(){
if(10<fieldname1 && fieldname1<100) return 'Result A';
return 'Result B';
})()
All previous equations are equivalent.
Best regards.