• In a “checkbox field” in the value area can I use an equation? For example suppose I have a “calculated field” (fieldname4) and a checkbox field. I want in the value, if selected the option, to result in the operation fieldname4/25 otherwise if no selected to remain empty. Is it possible?

    Thanks in advance,
    Marios

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @mariosps

    No, the equations must be defined into the calculated fields. For example, assuming the name of the checkbox field is the fieldname1, you can insert another calculated field in the form with the following equation:

    (function(){
    if(fieldname1) return fieldname4/25;
    })()

    Best regards.

Viewing 1 replies (of 1 total)
  • The topic ‘Calculated field in checkbox’ is closed to new replies.