Skip to main content
ulrikh32139234
Participant
September 14, 2018
Answered

Calculate number of radio groups answered

  • September 14, 2018
  • 1 reply
  • 494 views

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?

This topic has been closed for replies.
Correct answer try67

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;

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
September 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;

ulrikh32139234
Participant
September 14, 2018

Yes man! works perfectly