Hello.
In my survey I have two related fields: Product (select_one) and Rate (decimal). The range of acceptable values in the Rate field depend on what Product is selected. For example, if Product 1 is selected, the constraint is >=0 and <=2. If Product 2 is selected, the constraint is >=0 and <=50, and if Product 3 is selected, the constraint is >=0 and <=100.
As a test, I tried something like the simplified example below, hoping for a small, early win but it fails:
(.>0) and (if(selected(${productId},'prod1')), .<=2,.<=500)
Any thoughts on the equation i should be using?
