Hello @horizons66
Thank you very much for using our plugin. Please provide the link to the page that contains the form to check your dependencies and the equation’s result.
Best regards.
Hello @codepeople
I haven’t published the page with the form yet. Can I send you the link with a private message to access the reserved area or I’ll make you a video and post it here? Thank you
Hi @codepeople
this is a video captured from the page
https://www.youtube.com/watch?v=6l8FGWAeDVM
Thank you!
Hello @horizons66
Your equation does not require using the SUM operation. It can be implemented as fieldname2-fieldname6. I don’t know why you include a minus symbol in front SUM operation. But if you do it because the subtraction returns a negative number and want to make it positive, the correct would be using the ABS operation.
ABS(fieldname2-fieldname6)Regarding the dependencies conditions issue, in JavaScript, the symbol for decimals is the point, not the comma. You can configure the fields to display commas as decimal separators, but in the code, you must use a valid symbol.
So, the conditions would be:
1.65 <= value1.55 <= value && value < 1.651.40 <= value && value < 1.55Best regards.
