Typing values for slider stops calculation
-
Hello together,
I am using a slider with a calculated field. I activated the function “Allow to type the values” for the slider. After I tried to use this function for the first time, I realized, that the typed value is shown through the slider but not used for the calculation. The calculation is based on the following code:
(function(){ if(fieldname1<101) return fieldname1; if(AND(fieldname1>100, fieldname1<201)) { return ((fieldname1-100)*2+100); } if(AND(fieldname1>200, fieldname1<301)) { return ((fieldname1-200)*3+300); } if(AND(fieldname1>300, fieldname1<401)) { return ((fieldname1-300)*4+600); } })();
Is there any way to solve this problem?
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Typing values for slider stops calculation’ is closed to new replies.