[ad_1]
Hello @graicifyd
Assuming the slider field is the fieldname1, and you want to assign the numbers 5 and 15 as its min and max, respectively, from the calculated field equation.
In this case, you can use the following piece of code as the field’s equation:
(function(){
getField('fieldname1').set_min(5);
getField('fieldname1').set_max(15);
})()
Best regards.