Calculated options
-
Hi there
I am currently working on an assessment-type form, which has the letters A, B, C, D, and E as answers in the form of radio buttons. At the end of the form, using a calculated field, we need to tally up how many times A, B, C, D, and E were selected.
I’ve created a calculated field for each letter (A, B, C, D, E) and tried using the following equation to tally up the letters.
(function(){ if(fieldname3 == "A") return 1; else return 0; })();
However, I realised that I need to increment something every time a letter is clicked. Is there a code that can increment a value? Is there perhaps a better way to achieve this?
I would greatly appreciate your assistance with this.
Regards
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Calculated options’ is closed to new replies.