adding checkboxes if multiple checked.
event.value= 0; if 2 checkboxes are yes add 4 to event.value otherwise if only 1 is checked add 2. if none as stated 0.
event.value = 0;
if (this.getField("Enlargecb").value!="Yes") && (this.getField("Fey").value!="Yes") event.value=4;
else if (this.getField("Enlargecb").value!="Yes") event.value= 2;
else if (this.getField("Fey").value!="Yes") event.value=2;but it wont let me input this code.