Hi, You could try this.I created a button to calculate the totals. My
test uses only 5 textfields.In the calculate button i
had:form1.#subform[0].Button1::click - (JavaScript, client)var totP = 0;
//set variable for the Psvar totT = 0; //set variable for the
Tsif(TextField1.rawValue == "P"){totP = totP + 1;}if(TextField2.rawValue
== "P"){totP = totP + 1;}if(TextField3.rawValue == "P"){totP = totP +
1;}if(TextField4.rawValue == "P"){totP = totP +
1;}if(TextField5.rawValue == "P"){totP = totP +
1;...