Answered
I need to sum a couple of positions in a array. I need 1+2 to equal 3 but with my code it returns 12. Noob error I assume but I can't find an answer in any reference.
I've put this in the custom calculation script.
event.value = AData[this.getField("ABox").value].a + BData[this.getField("BBox").value].b
JavaScript has the 'Number' constrictor that will force a character strings of numbers to a numeric string.
George Kaiser