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

Calculate number of radio groups answered

New Here ,
Sep 14, 2018 Sep 14, 2018

I have three radio groups rg1, rg2 and rg3 with 6 option in each. I can calculate the sum of the three selection in each radio group easily. But I also need a text field calculation the number of radio groups checked. So if two of the radio groups are answered the text field should show 2. Is it done with a simple java script? And what would it look like?

TOPICS
Acrobat SDK and JavaScript , Windows
487
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 , Sep 14, 2018 Sep 14, 2018

Yes, this can be done with the following custom calculation script:

var total = 0;

for (var i=1; i<=3; i++) {
    if (this.getField("rg"+i).valueAsString!="Off") total++;
}

event.value = total;

Translate
Community Expert ,
Sep 14, 2018 Sep 14, 2018

Yes, this can be done with the following custom calculation script:

var total = 0;

for (var i=1; i<=3; i++) {
    if (this.getField("rg"+i).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 ,
Sep 14, 2018 Sep 14, 2018
LATEST

Yes man! works perfectly

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