Muliti Check box Exported Data in a Text Field and Calculation
Hi Good day Everyone,
I would like to seek support to answer my acrobat problem. Im doing a project specifically a multiple check box that has a specific value.
Example: Check box 1, 2, 3, 4 & 5 have their values 1A, 1B, 1C, 1D 1E. I wanted to get the result in the check box like this: 1A, 1B, 1C, 1D 1E.
Would it be possible? I'm working with this code I got from one of the questions here:
event.value = this.getField("1B").value;
// if value is "Off" then clear the field
if (event.value == "Off") event.value = "";
It's working, only when you select one check box. What I wanted to do is to select multiple boxes and the result will be in a displayed in a comma.
On the side, I want also to calculate the number of check box selected on text field that will support the result on the other text field.
Example:
Text Field (No of Check box Selected) 6
Text Field (selected Check Boxes) 1A, 1B, 1C, 122B, 121B, 120B
Thank you in advance for your support!


