Problems with Conditional Logic used in checkboxes and calculation fields
-
I have a form with some check box fields and a calculation field. Each check box has a value (price) that must be added and displayed in the calculation field. I would like to add the following logic: if a single check box is selected, its value will be added to the calculation field. If an additional box is selected, the value of 10 will be added to the value of the first selected box and the new value will be displayed in the calculation field. This value (10) is applied per additional checkbox selected.
Here’s an example:
- option_1 (value 20)
- option_2 (value 15)
- option_3 (value 5)
If only the checkbox option_1 is selected, the calculation field will have a value of 20. If the checkboxes option_1 and option_3 are selected, the calculation field will have the value of option_1 (20) plus the value per additional checkbox selected (10), that’s 30.
- The topic ‘Problems with Conditional Logic used in checkboxes and calculation fields’ is closed to new replies.