Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Count Total Number of Check Boxes

New Here ,
May 11, 2020 May 11, 2020

How do I get a total number of check boxes?

 

They are named:

Check Box 1.0 - 1.9

Check Box 2.0 - 2.9

Check Box 3.0 - 3.9

Check Box 4.0 - 4.9

Check Box 5.0 - 5.9

TOPICS
Acrobat SDK and JavaScript
1.1K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , May 11, 2020 May 11, 2020

In that case you can use this code as the custom calculation script of the field where you want to show the result:

 

var total = 0;
for (var i=1; i<=5; i++) {
	var fields = this.getField("Check Box "+i).getArray();
	for (var j in fields) {
		if (fields[j].valueAsString!="Off") total++;
	}
}
event.value = total;
Translate
Community Expert ,
May 11, 2020 May 11, 2020

I'm assuming you mean the ticked check-boxes... If not, the answer is 50.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 11, 2020 May 11, 2020

Yes, total number of ticked check-boxes.  Thank you 🙂

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 11, 2020 May 11, 2020

In that case you can use this code as the custom calculation script of the field where you want to show the result:

 

var total = 0;
for (var i=1; i<=5; i++) {
	var fields = this.getField("Check Box "+i).getArray();
	for (var j in fields) {
		if (fields[j].valueAsString!="Off") total++;
	}
}
event.value = total;
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 11, 2020 May 11, 2020

Sorry - but any chance of dumbing that down for me ... I'm unsure of where that script needs to go for it to work?  I have a Total Boxes Checked line for the number to go - but unsure of how to apply that script to that total line.

 

Appreciate all your help! 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 11, 2020 May 11, 2020
LATEST

Go to the Properties of the field, Calculate tab and put that code under the third option, "Custom calculation script".

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines