Hey all,
I am trying to do a survey in which there is a scoring system set up. At the end, I want to add up all of the results into a grand total of points.
Each question I have follows the same point system based on if you answered Yes, No, or N/A.
"Yes" = 4 points.
"No" = 0 points
"N/A" = NaN
When I add up all of the survey answers to a final "Grand Total" field, it gives me a blank answer if any of them are "N/A" (NaN).
The calculation I have set up is this:
int(${field1}) + int(${field2}) ....etc.
All of my calculations work just fine when they select either "Yes" or "No"....but as soon as even one of the options is set to "NA", the result is totally blanked out (due to the use of the "NaN"). Is there any work around for this?